axios可以单独做请求拦截吗?

axios可以单独做请求拦截吗?

比如,我发送登录请求,接收请求前加一个单独的loading动画这样。


慕容森
浏览 438回答 1
1回答

幕布斯6054654

可以使用 Interceptors拿 loading 来讲,代码大概长这样:axios.interceptors.request.use(function (config) {  // 开启 loading  startLoading()  return config});axios.interceptors.response.use(function (response) {  // 关闭 loading  endLoading()  return response})
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript