主要通过两种方式传参
1.query方式传参和接受参数
this.$router.push({
path:'/xxx'
query:{
idname:id
}
})
接收的方式:this.$route.query.id
2.params方式传递参数
this.$router.push({
name:'路径名称'
query:{
idname:id
}
})
接收的方式:this.$route.params.id
代码
this.$router.push({
path: '/container',
params: {
url: this.func.url,
},
});
在跳转后的页面中console.log(this.route)发现params是空的
问题原因:用法错误,以下为正确用法
this.$router.push({
name: 'container',
params: {
url: this.func.url,
},
});
要使跳转后的页面this.$route.params有参数,必须使用name:'container',而不是path:'/container',还需要注意name中没有/
this.$router.push({
name: 'container',
params: {
url: this.func.url,
},
});
参数获取this.$route.params.url
this.$router.push({
path: '/container',
query: {
url: this.func.url,
},
});
这种方式会在跳转的地址上拼接上?url=xxxx
获取方式this.$route.query.url
导致这样的原因是因为params需要通过name来获取,这里就要明白query和params的区别了
注意区别两种方式,切勿path和name同时出现
到此这篇关于vue.js this.$router.push获取不到params参数问题的文章就介绍到这了,更多相关this.$router.push获取参数内容请搜索亿速云以前的文章或继续浏览下面的相关文章希望大家以后多多支持亿速云!
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。