«
解决vue重复点击导航时的报错问题

时间:2023-6-29    作者:网络剑客    分类: other


Uncaught (in promise) NavigationDuplicated: Avoided redundant navigation to current location: "/home".

解决方案:

方案一:在 router 文件夹下添加如下代码:

const VueRouterPush = Router.prototype.push
Router.prototype.push = function push (to) {
  return VueRouterPush.call(this, to).catch(err => err)
}

方案二:在跳转时,判断是否跳转路由和当前路由是否一致,避免重复跳转产生问题。

toMenu (item) {
  if (this.$route.path !== item.url) {
    this.$router.push({ path: item.url })
  }
}

方案三:使用 catch 方法捕获 router.push 异常。

this.$router.push(route).catch(err => {
  console.log('输出报错',err)
})

标签: vue