axios可以单独做请求拦截吗?比如,我发送登录请求,接收请求前加一个单独的loading动画这样。
1 回答
幕布斯6054654
TA贡献1876条经验 获得超7个赞
可以使用 Interceptors
拿 loading 来讲,代码大概长这样:
axios.interceptors.request.use(function (config) {
// 开启 loading
startLoading()
return config
});
axios.interceptors.response.use(function (response) {
// 关闭 loading
endLoading()
return response
})
添加回答
举报
0/150
提交
取消