美文网首页
Navigating to current location (

Navigating to current location (

作者: 小话梅噢 | 来源:发表于2019-12-03 10:04 被阅读0次

    发生在vue cli3的生成的项目中,报错原因,接连两次访问了同一个路由地址。(发生的业务场景,切换了用户之后重新从后台获取菜单重定向到导航界面,强制reload)

    解决方法:

    (在路由入口文件中使用以下代码)

    // 解决两次访问相同路由地址报错

    const originalPush = VueRouter.prototype.push

    VueRouter.prototype.push = function push(location) {

      return originalPush.call(this, location).catch(err => err)

    }

    相关文章

      网友评论

          本文标题:Navigating to current location (

          本文链接:https://www.haomeiwen.com/subject/tjtcgctx.html