Redirected when going from “x“ to “x“ via a navigation guard【解决办法】

今天爱分享给大家带来Redirected when going from “x“ to “x“ via a navigation guard【解决办法】,希望能够帮助到大家。

@vue/cli 4.3.1

vue-router: ^3.3.2

使用路由重定向做了登录验证后, 报错

Error: Redirected from “/login” to “/index” via a navigation guard.

解决方案:

1.删除 node_modules ,到 package.json 中将 vue-router 改为 3.0.7 ,重新 npm i (未测试)
2.在 route.js 下粘贴一下代码 (使用中)

// 解决Vue-Router升级导致的Uncaught(in promise) navigation guard问题
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push (location, onResolve, onReject) {
  if (onResolve || onReject) return originalPush.call(this, location, onResolve, onReject)
  return originalPush.call(this, location).catch(err => err)
}


常见问题
不显示资源下载框怎么办?
请更换谷歌,微软,火狐等浏览器
微云登录不了,或者重复提示登录?
请更换浏览器,最好使用微软,谷歌,火狐。国产浏览器不好用
原文链接:https://blog.itblood.com/1401.html,转载请注明出处。
0

站点公告

显示验证码
没有账号?注册  忘记密码?