为了账号安全,请及时绑定邮箱和手机立即绑定

求大佬指点哈!使用axios被拦截,跪求!

求大佬指点哈!使用axios被拦截,跪求!

回首忆惘然 2019-06-09 10:00:19
使用vue-cli做了简单的项目,其中网络请求使用了axios,但是不知道axios的拦截器该怎么挂载到项目上去。假设我在一个js文件中写了如下代码://Addarequestinterceptorthis.axios.interceptors.request.use(function(config){//Dosomethingbeforerequestissentconsole.log('beforesending')returnconfig;},function(error){//DosomethingwithrequesterrorreturnPromise.reject(error);});那么怎样才能使得它在项目运行的时候生效呢?*axios本身已在man.js中引入:importaxiosfrom'axios'Vue.prototype.axios=axios
查看完整描述

2 回答

?
catspeake

TA贡献1111条经验 获得超0个赞

axios.interceptors.request.use(function(config){
//Dosomethingbeforerequestissent
console.log('beforesending')
returnconfig;
},function(error){
//Dosomethingwithrequesterror
returnPromise.reject(error);
});
这段代码写在main.js里,或者写在其他文件下然后main.js引入那个文件
                            
查看完整回答
反对 回复 2019-06-09
?
慕的地10843

TA贡献1785条经验 获得超8个赞

interceptor.js
importaxiosfrom'axios'
axios.interceptors.request.use(function(config){
//Dosomethingbeforerequestissent
console.log('beforesending')
returnconfig;
},function(error){
//Dosomethingwithrequesterror
returnPromise.reject(error);
})
exportdefaultaxios
man.js
importaxiosfrom'./interceptor.js'
Vue.prototype.axios=axios
                            
查看完整回答
反对 回复 2019-06-09
  • 2 回答
  • 0 关注
  • 466 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信