vue 路由拦截器和请求拦截器

Posted wuxiaoshi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 路由拦截器和请求拦截器相关的知识,希望对你有一定的参考价值。

vue 拦截器

  • 路由拦截器

    • 已路由为导向
    router.beforeEach((to,from,next)=>{
        if(to.path=='/login' || localStorage.getItem('token')){
          next();
        }else{
          alert('请重新登录');
          next('/login');
        }
    })
  • 请求拦截器

    • 当发送请求时才会触发此功能
    axios.interceptors.request.use(function (config) {
      let token = window.localStorage.getItem("token");
          if (token) {
              config.headers.token = token;    //将token放到请求头发送给服务器
          }
         return config; // 最终需要返回config
        }, function (error) {
           return Promise.reject(error);
    });

以上是关于vue 路由拦截器和请求拦截器的主要内容,如果未能解决你的问题,请参考以下文章

axios请求拦截器响应拦截器vue-router路由导航守卫的使用(案例)

vue拦截器种类及实现

Vue进行请求拦截

Vue+axios 实现http拦截及路由拦截

vue2axios请求与axios拦截器的使用(vue全家桶之一)

路由改变后取消前一个组件的所有http请求