当前位置: 代码迷 >> 综合 >> “NavigationDuplicated: Avoided redundant navigation to current location: “/personal“(重复路由的解决方案)
  详细解决方案

“NavigationDuplicated: Avoided redundant navigation to current location: “/personal“(重复路由的解决方案)

热度:91   发布时间:2024-03-06 01:06:59.0

今天遇到了一个bug,这个bug出现并没有对页面展示有所干扰,但是看到控制台报错,很不爽,所以查了下问题,发现它是由于路由导航冗余报错也就是路由重复导致的,网上的解决方案大同小异,下面是我的解决办法。
1、找到你项目里的 router文件夹下的index.js,然后将下面的代码添加到里面
在这里插入图片描述
2、添加代码

import Vue from 'vue';
import Router from 'vue-router';
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
    return originalPush.call(this, location).catch(err => err)
}

然后回到浏览器的控制台中,你就会发现,此问题不见啦

  相关解决方案