美文网首页
解决Vue-Router升级导致的Uncaught(in pro

解决Vue-Router升级导致的Uncaught(in pro

作者: 冰落寞成 | 来源:发表于2023-04-07 15:51 被阅读0次

    解决Vue-Router升级导致的Uncaught(in promise) navigation guard问题

    报错:Uncaught (in promise) Error: Redirected when going from "/home " to "/zoo" via a navigation guard
    在理由表文件下添加

    // 解决Vue-Router升级导致的Uncaught(in promise) navigation guard问题
    const originalPush = VueRouter.prototype.push
    VueRouter.prototype.push = function push (location, onResolve, onReject) {
      if (onResolve || onReject) { return originalPush.call(this, location, onResolve, onReject) }
      return originalPush.call(this, location).catch((err) => err)
    }
    

    相关文章

      网友评论

          本文标题:解决Vue-Router升级导致的Uncaught(in pro

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