NavigationDuplicated: Avoided redundant navigation to current location: "/xxx".的解决方法

2022/7/2 23:23:39

本文主要是介绍NavigationDuplicated: Avoided redundant navigation to current location: "/xxx".的解决方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

最近在Vue项目开发的过程中遇到一个问题,那就是在点击同一个路由操作的时候,控制台会报错误提示。

它的提示是避免到当前位置的冗余导航。

简单来说就是重复触发了同一个路由。

const originalPush = VueRouter.prototype.push;
 
VueRouter.prototype.push = function push(location) {
  return originalPush.call(this, location).catch(err => err)
}



这篇关于NavigationDuplicated: Avoided redundant navigation to current location: "/xxx".的解决方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程