- query方式传参和接收参数
两个组件 A和B,A组件通过query把orderId传递给B组件(触发事件可以是点击事件、钩子函数等)
//传参:
this.$router.push({
path:'/xxx'
query:{
id:id
}
})
//接收参数:
this.$route.query.id
ps:传参时是this.$router
,接收参数是this.$route
1.$router
为VueRouter实例,想要导航到不同URL,则使用$router.push
方法
2.$route
为当前router跳转对象,里面可以获取name、path、query、params
等
- params方式传参和接收参数
//传参:
this.$router.push({
name:'xxx'
params:{
id:id
}
})
//接收参数:
this.$route.params.id
ps:params传参,push里面只能是 name:'xxxx'
,不能是path:'/xxx'
,因为params只能用name来引入路由,如果这里写成了path,接收参数页面会是undefined!!!
网友评论