axios使用拦截器统一处理所有的http请求的方法
编程学习 2021-07-04 16:47www.dzhlxh.cn编程入门
这篇文章主要介绍了axios使用拦截器统一处理所有的http请求的方法,通过一段实例代码给大家介绍了axios拦截器使用,代码简单易懂,非常不错,具有一定的参考借鉴价值,需要的朋友可以参考下
axios使用拦截器
在请求或响应被 then 或 catch 处理前拦截它们。
http request拦截器
// 添加请求拦截器 axios.interceptors.request.use(function (config) { // 在发送请求之前做些什么 return config; }, function (error) { // 对请求错误做些什么 return Promise.reject(error); });
http respones拦截器
// 添加响应拦截器 axios.interceptors.response.use(function (response) { // 对响应数据做点什么 return response; }, function (error) { // 对响应错误做点什么 return Promise.reject(error); });
移除拦截器
var myInterceptor = axios.interceptors.request.use(function () {/*...*