前端接口axios的使用
时间: 2023-11-11 12:48:55 浏览: 60
Axios 是一个基于 Promise 的 HTTP 客户端,用于浏览器和 Node.js。可以使用它来发送异步请求到服务器。
使用步骤:
1. 安装 Axios
```bash
npm install axios
```
2. 引入 Axios
```js
import axios from 'axios';
```
3. 发送 GET 请求
```js
axios.get('http://api.example.com/getData')
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
```
4. 发送 POST 请求
```js
axios.post('http://api.example.com/postData', {
name: 'John',
age: 30
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
```
5. 发送异步请求
```js
async function getData() {
try {
const response = await axios.get('http://api.example.com/getData');
console.log(response.data);
} catch (error) {
console.log(error);
}
}
```
以上就是 Axios 的基本使用方法。除了以上几个方法外,Axios 还提供了很多其他的方法,如 PUT、DELETE 等,具体可以查看 Axios 的官方文档。
阅读全文