2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-17 19:21:29 +03:00

Renaming options to config

This commit is contained in:
Matt Zabriskie
2014-08-29 01:23:39 -06:00
parent 7aef479c7e
commit 774b8c8e85
9 changed files with 77 additions and 77 deletions
+22 -22
View File
@@ -7,27 +7,27 @@ var transformData = require('./transformData');
var urlIsSameOrigin = require('./urlIsSameOrigin');
var utils = require('./utils');
var axios = module.exports = function axios(options) {
options = utils.merge({
var axios = module.exports = function axios(config) {
config = utils.merge({
method: 'get',
transformRequest: defaults.transformRequest,
transformResponse: defaults.transformResponse
}, options);
}, config);
// Don't allow overriding defaults.withCredentials
options.withCredentials = options.withCredentials || defaults.withCredentials;
config.withCredentials = config.withCredentials || defaults.withCredentials;
var promise = new Promise(function (resolve, reject) {
// Create the request
var request = new(XMLHttpRequest || ActiveXObject)('Microsoft.XMLHTTP');
var data = transformData(
options.data,
options.headers,
options.transformRequest
config.data,
config.headers,
config.transformRequest
);
// Open the request
request.open(options.method, buildUrl(options.url, options.params), true);
request.open(config.method, buildUrl(config.url, config.params), true);
// Listen for ready state
request.onreadystatechange = function () {
@@ -38,11 +38,11 @@ var axios = module.exports = function axios(options) {
data: transformData(
request.responseText,
headers,
options.transformResponse
config.transformResponse
),
status: request.status,
headers: headers,
config: options
config: config
};
// Resolve or reject the Promise based on the status
@@ -60,16 +60,16 @@ var axios = module.exports = function axios(options) {
// Merge headers and add to request
var headers = utils.merge(
defaults.headers.common,
defaults.headers[options.method] || {},
options.headers || {}
defaults.headers[config.method] || {},
config.headers || {}
);
// Add xsrf header
var xsrfValue = urlIsSameOrigin(options.url)
? cookies.read(options.xsrfCookieName || defaults.xsrfCookieName)
var xsrfValue = urlIsSameOrigin(config.url)
? cookies.read(config.xsrfCookieName || defaults.xsrfCookieName)
: undefined;
if (xsrfValue) {
headers[options.xsrfHeaderName || defaults.xsrfHeaderName] = xsrfValue;
headers[config.xsrfHeaderName || defaults.xsrfHeaderName] = xsrfValue;
}
utils.forEach(headers, function (val, key) {
@@ -84,14 +84,14 @@ var axios = module.exports = function axios(options) {
});
// Add withCredentials to request if needed
if (options.withCredentials) {
if (config.withCredentials) {
request.withCredentials = true;
}
// Add responseType to request if needed
if (options.responseType) {
if (config.responseType) {
try {
request.responseType = options.responseType;
request.responseType = config.responseType;
} catch (e) {
if (request.responseType !== 'json') {
throw e;
@@ -131,8 +131,8 @@ createShortMethodsWithData('post', 'put', 'patch');
function createShortMethods() {
utils.forEach(arguments, function (method) {
axios[method] = function (url, options) {
return axios(utils.merge(options || {}, {
axios[method] = function (url, config) {
return axios(utils.merge(config || {}, {
method: method,
url: url
}));
@@ -142,8 +142,8 @@ function createShortMethods() {
function createShortMethodsWithData() {
utils.forEach(arguments, function (method) {
axios[method] = function (url, data, options) {
return axios(utils.merge(options || {}, {
axios[method] = function (url, data, config) {
return axios(utils.merge(config || {}, {
method: method,
url: url,
data: data