axios使用
时间: 2023-07-04 19:15:32 浏览: 122
axios使用文档1
Axios 是一个基于 Promise 的 HTTP 请求客户端,可以用于在浏览器和 Node.js 中发送 HTTP 请求。下面是一个基本的使用示例:
1. 首先需要在项目中安装 Axios:
```
npm install axios
```
2. 在需要使用 Axios 的文件中引入它:
```
import axios from 'axios';
```
3. 发送 GET 请求:
```
axios.get('/api/data')
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
```
4. 发送 POST 请求:
```
axios.post('/api/data', {
name: 'John Doe',
age: 25
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
```
以上是 Axios 的基本使用方法,当然还有其他更高级的用法,如拦截器、取消请求、并发请求等等。你可以去 Axios 的官网查看详细的使用文档。
阅读全文