美文网首页
vue项目 Uncaught Error: Redirected

vue项目 Uncaught Error: Redirected

作者: 天渺工作室 | 来源:发表于2020-08-05 14:06 被阅读0次
Uncaught Error: Redirected when going from "/*" to "/*"  
image.gif

报类似的错 大部分因为触发了vue-router 路由导航重定向了

简单的方法就是直接触发跳转的逻辑上,把error抛出来

 this.$router.replace({
        path: this.$route.path,
        query
   })
 .catch(()=>{});//把error 抛出来
image.gif

扩展参考 https://blog.csdn.net/ProgrammingWhite/article/details/107693339

相关文章

网友评论

      本文标题:vue项目 Uncaught Error: Redirected

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