安装
使用 npm:
使用 CDN:
1 2 3 4 5
| <script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
|
其他: https://www.axios-http.cn/docs/intro
使用
1 2 3 4 5 6 7 8 9
| axios({ method: 'post', url: '/user/12345', data: { firstName: 'Fred', lastName: 'Flintstone' } });
|
.then()
内的函数是 成功回调函数
1 2 3 4 5 6 7 8 9
| axios({ method: 'get', url: 'http://bit.ly/2mTM3nY', responseType: 'stream' }) .then(function (response) { response.data.pipe(fs.createWriteStream('ada_lovelace.jpg')) });
|
请求方式别名
axios(url[, config])
默认 GET 请求
axios.get(url[, config])
GET
axios.post(url[, data[, config]])
POST
其他: https://www.axios-http.cn/docs/api_intro