其他分享
首页 > 其他分享> > 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,这样就完美解决了!

标签:err,redundant,current,NavigationDuplicated,location,push,Router,prototype,origin
来源: https://blog.csdn.net/qq_42288851/article/details/114377714