美文网首页
axios中interceptors拦截器

axios中interceptors拦截器

作者: 小太阳可可 | 来源:发表于2019-08-22 11:12 被阅读0次
            mounted:function(){
                axios.interceptors.request.use(function(config){
                    console.log('请求前')
                    return config;
                })
                axios.interceptors.response.use(function(response){
                    console.log('请求后')
                    return response;
                })
            },
    

    相关文章

      网友评论

          本文标题:axios中interceptors拦截器

          本文链接:https://www.haomeiwen.com/subject/rmngsctx.html