当前位置: 代码迷 >> 综合 >> Vue中报如下错误Uncaught (in promise) NavigationDuplicated解决方案
  详细解决方案

Vue中报如下错误Uncaught (in promise) NavigationDuplicated解决方案

热度:92   发布时间:2023-11-22 06:50:35.0

Uncaught (in promise) NavigationDuplicated: Avoided redundant navigation to current location: “/users”.
关于这个报错的原因和解决方案如下:在这里插入图片描述
原因:
源码 install 安装依赖时,Router(路由版本不一致)
也可以修改 package.json 里面的 Router 版本

解决方案:在router文件夹下的index.js中加入如下代码
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}

index.js中完整的代码如下:

import Vue from 'vue'
import Router from 'vue-router'
import Index from "../components/Index";
import List from "../components/users/List";Vue.use(Router)
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
    return originalPush.call(this, location).catch(err => err)
}
export default new Router({
    routes: [{
    path: '/', redirect:'/index'},{
    path:'/index', name:Index, component:Index},/*这里的ecomponent后便容易多一个s*/{
    path: '/users', component: List},// {path: '',component: }]
})
  相关解决方案