本文主要是介绍【vue报错】:vue-router.esm.js a12b:2046 Uncaught (in promise) NavigationDuplicated:Avoi,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
报错:
vue-router.esm.js?a12b:2046 Uncaught (in promise) NavigationDuplicated: Avoided redundant navigation to current location: “/homeauto”.
报错原因:
重复点击当前的路由,因为当前vue-router引入了promise,当我们使用this.$router.push时候需要都添加成功或失败的回调,否则就会报出以上的错误。
解决办法
第一种
switchTab(path) {if (this.$router.path == path) returnthis.$router.push(path)
}
第二种
跳转后使用catch语句对错误不再进行处理
this.$router.push(path).catch(err => {})
第三种
基于第二种方法,当我们的路由跳转过多时就需要每次跳转都要加上catch回调,这样比较麻烦,所以还可以在引入vueRouter文件下重写push和replace方法
import VueRouter from 'vue-router';
//保存原型对象的Push
let originPush = VueRouter.prototype.push
let originReplace = VueRouter.prototype.replace
//重写push方法
VueRouter.prototype.push = function (location, res, rej) {if (res && rej) {originPush.call(this, location, res, rej)}else {originPush.call(this, location, () => { }, () => { })}}
//重写replace方法
VueRouter.prototype.replace = function (location, res, rej) {if (res && rej) {originReplace.call(this, location, res, rej)}else {originReplace.call(this, location, () => { }, () => { })}
}
这篇关于【vue报错】:vue-router.esm.js a12b:2046 Uncaught (in promise) NavigationDuplicated:Avoi的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!