提交 5e6e269b 编写于 作者: M Matt Zabriskie

Updating README

上级 774b8c8e
...@@ -47,9 +47,9 @@ axios.post('/user', { ...@@ -47,9 +47,9 @@ axios.post('/user', {
## Request API ## Request API
Requests can be made by passing the relevant options to `axios`. Requests can be made by passing the relevant config to `axios`.
##### axios(options) ##### axios(config)
```js ```js
axios({ axios({
...@@ -62,17 +62,17 @@ axios({ ...@@ -62,17 +62,17 @@ axios({
For convenience aliases have been provided for all supported request methods. For convenience aliases have been provided for all supported request methods.
##### axios.get(url[, options]) ##### axios.get(url[, config])
##### axios.delete(url[, options]) ##### axios.delete(url[, config])
##### axios.head(url[, options]) ##### axios.head(url[, config])
##### axios.post(url[, data[, options]]) ##### axios.post(url[, data[, config]])
##### axios.put(url[, data[, options]]) ##### axios.put(url[, data[, config]])
##### axios.patch(url[, data[, options]]) ##### axios.patch(url[, data[, config]])
###### NOTE ###### NOTE
When using the alias methods `url`, `method`, and `data` properties don't need to be specified in options. When using the alias methods `url`, `method`, and `data` properties don't need to be specified in config.
### Options ### Config
```js ```js
{ {
...@@ -117,7 +117,7 @@ When using the alias methods `url`, `method`, and `data` properties don't need t ...@@ -117,7 +117,7 @@ When using the alias methods `url`, `method`, and `data` properties don't need t
withCredentials: true, withCredentials: true,
// `responseType` indicates the type of data that the server will responsd with // `responseType` indicates the type of data that the server will responsd with
// options are 'arraybuffer', 'blob', 'document', 'json', 'text' // config are 'arraybuffer', 'blob', 'document', 'json', 'text'
responseType: 'json' responseType: 'json'
} }
``` ```
...@@ -137,7 +137,7 @@ For either `success` or `error`, the following response will be provided. ...@@ -137,7 +137,7 @@ For either `success` or `error`, the following response will be provided.
// `headers` the headers that the server responded with // `headers` the headers that the server responded with
headers: {/*...*/}, headers: {/*...*/},
// `config` are the options that were provided to `axios` for the request // `config` are the config that were provided to `axios` for the request
config: {/*...*/} config: {/*...*/}
} }
``` ```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册