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

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

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

慕容森 2019-02-19 17:13:08
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

})


查看完整回答
反对 回复 2019-02-23
  • 1 回答
  • 0 关注
  • 437 浏览
慕课专栏
更多

添加回答

举报

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