mirror of
https://github.com/tenrok/axios.git
synced 2026-06-14 18:42:33 +03:00
Fixing issue #3
This commit is contained in:
@@ -20,6 +20,11 @@ module.exports = function httpAdapter(resolve, reject, config) {
|
||||
config.headers || {}
|
||||
);
|
||||
|
||||
// Add Content-Length header if data exists
|
||||
if (data) {
|
||||
headers['Content-Length'] = data.length;
|
||||
}
|
||||
|
||||
// Parse url
|
||||
var parsed = url.parse(config.url);
|
||||
var options = {
|
||||
|
||||
+1
-1
@@ -14,7 +14,7 @@ module.exports = {
|
||||
return utils.isObject(data) &&
|
||||
!utils.isFile(data) &&
|
||||
!utils.isBlob(data) ?
|
||||
JSON.stringify(data) : null;
|
||||
JSON.stringify(data) : data;
|
||||
}],
|
||||
|
||||
transformResponse: [function (data) {
|
||||
|
||||
Reference in New Issue
Block a user