Axios 是一个基于 promise 的 HTTP 库,它在浏览器和 node.js 中都可以使用。以下是使用 Axios 发送请求的一些示例。
- 使用 GET 方法发送请求:
axios.get('https://api.example.com/data')
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.log(error);
});
- 使用 POST 方法发送请求:
axios.post('https://api.example.com/submit', {
firstName: 'Fred',
lastName: 'Flintstone'
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
- 使用 PUT 方法发送请求:
axios.put('https://api.example.com/submit', {
firstName: 'Fred',
lastName: 'Flintstone'
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
- 使用 DELETE 方法发送请求:
axios.delete('https://api.example.com/delete')
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
- 发送请求并取消:
const CancelToken = axios.CancelToken;
let cancel;
axios.get('https://api.example.com/data', {
cancelToken: new CancelToken(function executor(c) {
// executor 函数接收一个 cancel 函数作为参数
cancel = c;
})
});
// 取消请求
cancel();
- 在请求或响应被 then 或 catch 处理前拦截它们:
// 添加请求拦截器
axios.interceptors.request.use(function (config) {
// 在发送请求之前做些什么
return config;
}, function (error) {
// 对请求错误做些什么
return Promise.reject(error);
});
// 添加响应拦截器
axios.interceptors.response.use(function (response) {
// 对响应数据做点什么
return response;
}, function (error) {
// 对响应错误做点什么
return Promise.reject(error);
});
以上就是使用 Axios 发送请求的一些基本示例。Axios 还有更多的高级用法,如并发请求、请求配置等,可以参考其官方文档进行学习。