2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-15 11:59:42 +03:00
2014-08-27 13:59:29 -06:00
2014-08-27 03:12:29 -06:00
2014-08-27 03:12:29 -06:00
2014-08-18 17:25:07 -06:00
2014-08-18 17:25:24 -06:00
2014-08-18 17:25:56 -06:00
2014-08-18 17:25:07 -06:00
2014-08-27 01:03:49 -06:00
2014-08-18 17:27:33 -06:00
2014-08-27 01:03:49 -06:00
2014-08-27 01:03:49 -06:00
2014-08-27 10:33:29 -06:00

axios Build Status

Lightweight Promise based XHR library

Example

Performing a GET request

// Make a request for a user with a given ID
axios.get('/user?ID=12345')
	.success(function (response) {
		console.log(response);
	});
	
// Optionally the request above could also be done as
axios.get('/user', {
	params: {
		ID: 12345
	}
})
.success(function (response) {
	console.log(response);
});

Performing a POST request

axios.post('/user', {
	firstName: 'Fred',
	lastName: 'Flintstone'
})
.success(function (response) {
	console.log(response);
});

Request API

Requests can be made by passing the relevant options to axios.

axios(options)
axios({
	url: '/user/12345',
	method: 'get'
});

Request method aliases

For convenience aliases have been provided for all supported request methods.

axios.get(url[, options])
axios.delete(url[, options])
axios.head(url[, options])
axios.post(url[, data[, options]])
axios.put(url[, data[, options]])
axios.patch(url[, data[, options]])
NOTE

When using the alias methods url, method, and data properties don't need to be specified in options.

Options

{
	// `url` is the server URL that will be used for the request
	url: '/user',
	
	// `method` is the request method to be used when making the request
	method: 'get',
	
	// `transformRequest` allows changes to the request data before it is sent to the server
	// This is only applicable for request methods 'PUT', 'POST', and 'PATCH'
	transformRequest: [function (data) {
		// Do whatever you want to transform the data
		
		return data;
	}],
	
	// `transformResponse` allows changes to the response data to be made before
	// it is passed to the success/error handlers
	transformResponse: [function (data) {
		// Do whatever you want to transform the data
		
		return data;
	}],
	
	// `headers` are custom headers to be sent
	headers: {'X-Requested-With': 'XMLHttpRequest'},
	
	// `param` are the URL parameters to be sent with the request
	params: {
		ID: 12345
	},
	
	// `data` is the data to be sent as the request body
	// Only applicable for request methods 'PUT', 'POST', and 'PATCH'
	data: {
		firstName: 'Fred'
	},
	
	withCredentials: true,
	
	responseType: 'json' // default
}

Response API

For either success or error, the following response will be provided.

{
	// `data` is the response that was provided by the server
	data: {/*...*/}	,
	
	// `status` is the HTTP status code from the server response
	status: 200,
	
	// `headers` the headers that the server responded with
	headers: {/*...*/},
	
	// `config` are the options that were provided to `axios` for the request
	config: {/*...*/}
}

Installing

Using bower:

$ bower install axios

Using npm:

$ npm install axios

Attribution

axios is heavily inspired by Angular's $http service.

License

MIT

S
Description
No description provided
Readme MIT 25 MiB
Languages
JavaScript 86.7%
TypeScript 10.1%
HTML 3%
Handlebars 0.2%