Vuevue专栏VUE

路由守卫

2019-05-12  本文已影响182人  Grayly吖

路由守卫

      路由跳转前做一些验证,比如登录验证,是网站中的普遍需求。对此,vue-route 提供的 \color{red}{beforeRouteUpdate }可以方便地实现导航守卫(navigation-guards)。导航守卫(navigation-guards)这个名字,听起来怪怪的,但既然官方文档是这样翻译的,就姑且这么叫吧。
文档地址:https://router.vuejs.org/zh/guide/advanced/navigation-guards.html

一、全局前置守卫\color{red}{beforeEach }

    /**
     * @param {to} 将要去的路由
     * @param {from} 出发的路由
     * @param {next} 执行下一步
     */
    router.beforeEach((to, from, next) => {
        document.title = to.meta.title || '卖座电影';
        if (to.meta.needLogin && !$store.state.isLogin) {
            next({
                path: '/login'
            })
        } else {
            next()
        }
    })

二、全局后置钩子\color{red}{afterEach}(少用)

    router.afterEach((to, from) => {
      // ...
   })

三、路由独享的守卫\color{red}{beforeEnter }

        //登录模块
        path: '/login',
        component: () => import('@/views/login'),
        beforeEnter: (to, from, next) => {
            if (to.meta.needLogin && !$store.state.isLogin) {
                next({
                    path: '/login'
                })
            } else {
                next()
            }
        }

四、组件内的守卫

  data() {
    return {
      name: "Grayly"
    };
  },  
  beforeRouteEnter: (to, from, next) => {
    next(vm => {
      alert("hello" + vm.name);
    })
  },
  beforeRouteUpdate (to, from, next) {
    // 在当前路由改变,但是该组件被复用时调用
    // 举例来说,对于一个带有动态参数的路径 /foo/:id,在 /foo/1 和 /foo/2 之间跳转的时候,
    // 由于会渲染同样的 Foo 组件,因此组件实例会被复用。而这个钩子就会在这个情况下被调用。
    // 可以访问组件实例 `this`
  },
  beforeRouteLeave: (to, from, next) => {
    if (confirm("你确定要离开吗") == true) {
      next();
    } else {
      next(false);
    }
  },

每日额外

返回上一级路由:

      第一种:history.back();

      第二种:this.$router.go(-1);
上一篇下一篇

猜你喜欢

热点阅读