Vue报错:Uncaught (in promise) TypeError: Cannot read properties of undefined (reading ‘cancelToken‘)
解决方法:在axios请求拦截器中添加 :return config
·
今天在项目中发送axios请求接口数据时,发生了这个错误
解决方法:
在axios请求拦截器中添加 :return config
service.interceptors.request.use(
config=>{
console.log(config)
return config //添加这行代码
},
error=>{
console.log(error)
}
)
更多推荐
已为社区贡献3条内容
所有评论(0)