前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >NavigationDuplicated异常警告!!!

NavigationDuplicated异常警告!!!

作者头像
SerMs
发布2022-05-23 11:15:57
6910
发布2022-05-23 11:15:57
举报
文章被收录于专栏:SerMsBlog

问题

Vue路由当你重复传相同参数时,控制台就会报:NavigationDuplicated

原因:

最新的vue-router引入了promise

解决方法

通过给push方法传递相应的成功,失败的回调,可以捕获当前错误,可以解决问题

代码语言:javascript
复制
this.$router.push({
name: 'search',
query: {
k: this.keyword.toUpperCase(),
},
params: {
keyword: this.keyword,
},

},
() => { },	//函数传入成功
() => { }	//函数传入失败
);

但是这种方法治标不治本!!!

重写Router原型对象上的push方法和replace方法

代码语言:javascript
复制
//配置路由的主文件
import Vue from 'vue'
import Router from 'vue-router'

//使用插件
Vue.use(Router);
//打印路由原型
// console.log(Router.prototype);

//备份Router原型对象的push方法
let originPush = Router.prototype.push;
// console.log(originPush);

//备份Router原型对象的replace方法
let originReplace = Router.prototype.replace;

//重写push和replace方法
//第一个参数:路由路径以及传递的参数
//第二个参数:成功的回调
//第三个参数:失败的回调
//this:当前的路由对象(当前组件实例对象)
//call和apply的区别:都是改变this指向,但是call和apply的区别是:call是把参数传递给函数,apply是把参数传递给函数的数组
Router.prototype.push = function (location, resolve, reject) {
    if (resolve && reject) {
        return originPush.call(this, location, resolve, reject);
    } else {
        return originPush.call(this, location, () => { }, () => { });
    }
}
Router.prototype.replace = function (location, resolve, reject) {
    if (resolve && reject) {
        return originReplace.call(this, location, resolve, reject);
    } else {
        return originReplace.call(this, location, () => { }, () => { });
    }
}


//配置路由
export default new Router({
    //配置路由
    routes: [
        {
            path: '/home',
            component: Home,
            meta: { show: true }
        },
    ]
})

至此push和replace重复提交问题以全部解决

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022-05-22,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 问题
  • 原因:
  • 解决方法
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档