使用Vue-Router的导航守卫-无限循环问题
我在项目里面用到了的是全局守卫,beforeEach,方便管理
不过遇到了一个问题,就是在beforeEach()中设置好判断条件后出现了无限循环的问题
当时的代码如下:
router.beforeEach((to, from, next) => { if (isLogin) { next() } else { console.log('测试') next('login') } })
结果chrome的debug中看到:
这个问题我是这样理解的:
next() 表示路由成功,直接进入to路由,不会再次调用router.beforeEach()
next('login') 表示路由拦截成功,重定向至login,会再次调用router.beforeEach()
也就是说beforeEach()必须调用next(),否则就会出现无限循环,next() 和 next('xxx') 是不一样的,区别就是前者不会再次调用router.beforeEach(),后者会!!!
官网这样写的(主要是红线标记的那句!):
最终解决的代码如下:
router.beforeEach((to, from, next) => { if (isLogin) { next() } else { if (to.name === 'login') { next() } else { console.log('测试') next('login') } } })
觉得有帮助的小伙伴右上角点个赞~
扫描上方二维码关注我的订阅号~
觉得有帮助的小伙伴点个赞支持下~
相关推荐
前端小白 2020-07-19
85423468 2020-07-19
bowean 2020-07-05
82344699 2020-07-05
85423468 2020-06-26
ggkuroky 2020-06-17
89711338 2020-06-14
80437700 2020-06-02
85394591 2020-05-31
80437700 2020-05-15
85394591 2020-05-15
80324291 2020-05-11
80437700 2020-05-11
85394591 2020-05-10
85423468 2020-05-05
87133050 2020-04-30
85497718 2020-04-29