web遇到的问题
程序员文章站
2022-06-06 19:02:51
...
重剑无锋,大巧不工
图片待定
Avoided redundant navigation to current location
归类: vue-router
vue router报错。不知道原因,字面意思是:路由重复了。网上搜说是版本的问题(具体解释没有给),解决方法都是重写vueRouter的原型方法,这样可以一劳永逸(点我查看解决方法)。
但是不想改原型(prototype
)的小伙伴,同样也可以在方法后直接加catch
捕获异常:
this.$router.replace({query: params}).catch((e) => e));
replace,push
同理。