NavigationDuplicated: Avoided redundant navigation to current location 解决重复路由错误

NavigationDuplicated: Avoided redundant navigation to current location  解决重复路由错误

原因:是指路由重复。
          虽然对项目无影响,但是看到有红的不舒服!

解决方法:

打开router文件夹下的index.js文件中添加如下代码:

 

//获取原型对象上的push函数
const originalPush = Router.prototype.push
//修改原型对象中的push方法
Router.prototype.push = function push(location) {
   return originalPush.call(this, location).catch(err => err)
}


ok,这样就完美解决了!

上一篇:Vue中重复点击相同路由,出现 Uncaught (in promise) NavigationDuplicated: Avoided redundant navigation 问题


下一篇:小程序省市区县分割