Posted in Javascript onSeptember 09, 2017
最近在使用vue-router的beforeEach钩子时候遇到了一个问题,就是在beforeEach()中设置好判断条件后出现了无限循环的问题
代码如下:
router.beforeEach((to, from, next) => { if(isLogin){ next() }else{ console.log('测试') next('login') } })
结果chrome的debug中看到:
这个问题我是这样理解的:
router.beforeEach((to, from, next) => { if(true){ next() }else{ next('login') } })
- next() 表示路由成功,直接进入to路由,不会再次调用router.beforeEach()
- next('login') 表示路由拦截成功,重定向至login,会再次调用router.beforeEach()
也就是说beforeEach()必须调用next(),否则就会出现无限循环,next() 和 next('xxx') 是不一样的,区别就是前者不会再次调用router.beforeEach(),后者会!!!
官网这样写的(主要是红线标记的那句!):
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。
关于vue-router的beforeEach无限循环的问题解决
- Author -
安木贝神声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@