首页 > 其他 > 详细

出现 Uncaught (in promise) NavigationDuplicated: Avoided redundant navigation 问题

时间:2020-12-03 18:02:21      阅读:560      评论:0      收藏:0      [点我收藏+]

主要原因是Vue 重复点击相同路由造成的:

解决方案:

      第一种:在 router 文件夹下里面的文件index.js里面找到如下位置:

        // src/router/index.js

         Vue.use(Router)

        const router = new Router({

             routes

        })

        找到上面位置,在下面增加这段代码即可。

        const VueRouterPush = Router.prototype.push

        Router.prototype.push = function push (to) {

              return VueRouterPush.call(this, to).catch(err => err)

        }

 

 

参考链接:https://blog.csdn.net/qq_36437172/article/details/108269846

出现 Uncaught (in promise) NavigationDuplicated: Avoided redundant navigation 问题

原文:https://www.cnblogs.com/wlming/p/14081247.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!