Vue: Redirected when going from “x“ to “x“ via a navigation guard

Vue: Redirected when going from “x“ to “x“ via a navigation guard

Vue  JS

@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://forum.vuejs.org/t/topic/97260

https://www.cnblogs.com/pjw233/p/12658849.html

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。