第一次加载加载页面时报错如下:
Redirected when going from "/" to "/login" via a navigation guard.
后续在地址栏直接添加/login,index,错误页面等均正常无报错.
路由配置如下:
router.beforeEach((to, from, next) => {
if (token) {
if (to.path == '/login') {
next('/index')
} else if (to.path === null) {
next('*')
} else {
next()
}
} else {
if (to.path == '/login') {
next()
}
}
})
还会出现路由无限循环跳转的情况.
请求大家的帮助.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…