2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-20 20:00:40 +03:00

Merge pull request #317 from nickuraltsev/urlsearchparams

Adding support for URLSearchParams
This commit is contained in:
Matt Zabriskie
2016-05-24 20:40:25 -06:00
11 changed files with 100 additions and 20 deletions
+5 -1
View File
@@ -217,6 +217,7 @@ These are the available config options for making requests. Only the `url` is re
headers: {'X-Requested-With': 'XMLHttpRequest'}, headers: {'X-Requested-With': 'XMLHttpRequest'},
// `params` are the URL parameters to be sent with the request // `params` are the URL parameters to be sent with the request
// Must be a plain object or a URLSearchParams object
params: { params: {
ID: 12345 ID: 12345
}, },
@@ -229,7 +230,10 @@ These are the available config options for making requests. Only the `url` is re
// `data` is the data to be sent as the request body // `data` is the data to be sent as the request body
// Only applicable for request methods 'PUT', 'POST', and 'PATCH' // Only applicable for request methods 'PUT', 'POST', and 'PATCH'
// When no `transformRequest` is set, must be a string, an ArrayBuffer, a hash, or a Stream // When no `transformRequest` is set, must be of one of the following types:
// - string, plain object, ArrayBuffer, ArrayBufferView, URLSearchParams
// - Browser only: FormData, File, Blob
// - Node only: Stream
data: { data: {
firstName: 'Fred' firstName: 'Fred'
}, },
+20 -14
View File
@@ -1,33 +1,39 @@
'use strict'; 'use strict';
var utils = require('./utils'); var utils = require('./utils');
var normalizeHeaderName = require('./helpers/normalizeHeaderName');
var PROTECTION_PREFIX = /^\)\]\}',?\n/; var PROTECTION_PREFIX = /^\)\]\}',?\n/;
var DEFAULT_CONTENT_TYPE = { var DEFAULT_CONTENT_TYPE = {
'Content-Type': 'application/x-www-form-urlencoded' 'Content-Type': 'application/x-www-form-urlencoded'
}; };
function setContentTypeIfUnset(headers, value) {
if (!utils.isUndefined(headers) && utils.isUndefined(headers['Content-Type'])) {
headers['Content-Type'] = value;
}
}
module.exports = { module.exports = {
transformRequest: [function transformRequest(data, headers) { transformRequest: [function transformRequest(data, headers) {
if (utils.isFormData(data) || utils.isArrayBuffer(data) || utils.isStream(data)) { normalizeHeaderName(headers, 'Content-Type');
if (utils.isFormData(data) ||
utils.isArrayBuffer(data) ||
utils.isStream(data) ||
utils.isFile(data) ||
utils.isBlob(data)
) {
return data; return data;
} }
if (utils.isArrayBufferView(data)) { if (utils.isArrayBufferView(data)) {
return data.buffer; return data.buffer;
} }
if (utils.isObject(data) && !utils.isFile(data) && !utils.isBlob(data)) { if (utils.isURLSearchParams(data)) {
// Set application/json if no Content-Type has been specified setContentTypeIfUnset(headers, 'application/x-www-form-urlencoded;charset=utf-8');
if (!utils.isUndefined(headers)) { return data.toString();
utils.forEach(headers, function processContentTypeHeader(val, key) { }
if (key.toLowerCase() === 'content-type') { if (utils.isObject(data)) {
headers['Content-Type'] = val; setContentTypeIfUnset(headers, 'application/json;charset=utf-8');
}
});
if (utils.isUndefined(headers['Content-Type'])) {
headers['Content-Type'] = 'application/json;charset=utf-8';
}
}
return JSON.stringify(data); return JSON.stringify(data);
} }
return data; return data;
+2 -1
View File
@@ -29,6 +29,8 @@ module.exports = function buildURL(url, params, paramsSerializer) {
var serializedParams; var serializedParams;
if (paramsSerializer) { if (paramsSerializer) {
serializedParams = paramsSerializer(params); serializedParams = paramsSerializer(params);
} else if (utils.isURLSearchParams(params)) {
serializedParams = params.toString();
} else { } else {
var parts = []; var parts = [];
@@ -64,4 +66,3 @@ module.exports = function buildURL(url, params, paramsSerializer) {
return url; return url;
}; };
+12
View File
@@ -0,0 +1,12 @@
'use strict';
var utils = require('../utils');
module.exports = function normalizeHeaderName(headers, normalizedName) {
utils.forEach(headers, function processHeader(value, name) {
if (name !== normalizedName && name.toUpperCase() === normalizedName.toUpperCase()) {
headers[normalizedName] = value;
delete headers[name];
}
});
};
+11
View File
@@ -142,6 +142,16 @@ function isStream(val) {
return isObject(val) && isFunction(val.pipe); return isObject(val) && isFunction(val.pipe);
} }
/**
* Determine if a value is a URLSearchParams object
*
* @param {Object} val The value to test
* @returns {boolean} True if value is a URLSearchParams object, otherwise false
*/
function isURLSearchParams(val) {
return typeof URLSearchParams !== 'undefined' && val instanceof URLSearchParams;
}
/** /**
* Trim excess whitespace off the beginning and end of a string * Trim excess whitespace off the beginning and end of a string
* *
@@ -259,6 +269,7 @@ module.exports = {
isBlob: isBlob, isBlob: isBlob,
isFunction: isFunction, isFunction: isFunction,
isStream: isStream, isStream: isStream,
isURLSearchParams: isURLSearchParams,
isStandardBrowserEnv: isStandardBrowserEnv, isStandardBrowserEnv: isStandardBrowserEnv,
forEach: forEach, forEach: forEach,
merge: merge, merge: merge,
+2 -1
View File
@@ -63,7 +63,8 @@
"phantomjs-prebuilt": "2.1.6", "phantomjs-prebuilt": "2.1.6",
"sinon": "1.17.3", "sinon": "1.17.3",
"webpack": "1.12.14", "webpack": "1.12.14",
"webpack-dev-server": "1.14.1" "webpack-dev-server": "1.14.1",
"url-search-params": "0.5.0"
}, },
"browser": { "browser": {
"./lib/adapters/http.js": "./lib/adapters/xhr.js" "./lib/adapters/http.js": "./lib/adapters/xhr.js"
+3
View File
@@ -1,6 +1,9 @@
// Polyfill ES6 Promise // Polyfill ES6 Promise
require('es6-promise').polyfill(); require('es6-promise').polyfill();
// Polyfill URLSearchParams
URLSearchParams = require('url-search-params');
// Import axios // Import axios
axios = require('../../index'); axios = require('../../index');
+6 -3
View File
@@ -1,4 +1,5 @@
var buildURL = require('../../../lib/helpers/buildURL'); var buildURL = require('../../../lib/helpers/buildURL');
var URLSearchParams = require('url-search-params');
describe('helpers::buildURL', function () { describe('helpers::buildURL', function () {
it('should support null params', function () { it('should support null params', function () {
@@ -60,7 +61,9 @@ describe('helpers::buildURL', function () {
expect(buildURL('/foo', params, serializer)).toEqual('/foo?foo=bar'); expect(buildURL('/foo', params, serializer)).toEqual('/foo?foo=bar');
expect(serializer.calledOnce).toBe(true); expect(serializer.calledOnce).toBe(true);
expect(serializer.calledWith(params)).toBe(true); expect(serializer.calledWith(params)).toBe(true);
}) });
it('should support URLSearchParams', function () {
expect(buildURL('/foo', new URLSearchParams('bar=baz'))).toEqual('/foo?bar=baz');
});
}); });
@@ -0,0 +1,21 @@
var normalizeHeaderName = require('../../../lib/helpers/normalizeHeaderName');
describe('helpers::normalizeHeaderName', function () {
it('should normalize matching header name', function () {
var headers = {
'conTenT-Type': 'foo/bar',
};
normalizeHeaderName(headers, 'Content-Type');
expect(headers['Content-Type']).toBe('foo/bar');
expect(headers['conTenT-Type']).toBeUndefined();
});
it('should not change non-matching header name', function () {
var headers = {
'content-type': 'foo/bar',
};
normalizeHeaderName(headers, 'Content-Length');
expect(headers['content-type']).toBe('foo/bar');
expect(headers['Content-Length']).toBeUndefined();
});
});
+13
View File
@@ -277,4 +277,17 @@ describe('requests', function () {
}); });
}); });
it('should support URLSearchParams', function (done) {
var params = new URLSearchParams();
params.append('param1', 'value1');
params.append('param2', 'value2');
axios.post('/foo', params);
getAjaxRequest().then(function (request) {
expect(request.requestHeaders['Content-Type']).toBe('application/x-www-form-urlencoded;charset=utf-8');
expect(request.params).toBe('param1=value1&param2=value2');
done();
});
});
}); });
+5
View File
@@ -78,4 +78,9 @@ describe('utils::isX', function () {
expect(utils.isStream(new Stream.Readable())).toEqual(true); expect(utils.isStream(new Stream.Readable())).toEqual(true);
expect(utils.isStream({ foo: 'bar' })).toEqual(false); expect(utils.isStream({ foo: 'bar' })).toEqual(false);
}); });
it('should validate URLSearchParams', function () {
expect(utils.isURLSearchParams(new URLSearchParams())).toEqual(true);
expect(utils.isURLSearchParams('foo=1&bar=2')).toEqual(false);
});
}); });