axios拦截器

axios的请求拦截器和响应拦截器。

请求拦截器

1
2
3
4
5
6
7
// 可以为配置好的实例单独配置拦截器
axios.interceptors.request.use(config=>{
console.log("请求拦截成功,处理,放行");
return config;
},err=>{
console.log(err);
});

响应拦截器

1
2
3
4
5
6
7
// 可以为配置好的实例单独配置拦截器
axios.interceptors.response.use(config=>{
console.log("响应拦截成功,处理,放行");
return config;
},err=>{
console.log(err);
});
作者

亦初

发布于

2022-03-14

更新于

2024-06-19

许可协议

# 相关文章
  1.axios封装
  2.axios全局配置
  3.axios基础
  4.axios前置知识
评论

:D 一言句子获取中...

加载中,最新评论有1分钟缓存...