vue this.$router.push()传参
params传参
传数据:this.$router.push({name: 'OrderConfirm', params: {order_id: orderId}})
取数据:this.$route.params.order_id
注意:
params
传参,路径不能使用path
,只能使用name
,不然获取不到传的数据
query传参
传数据:this.$router.push({path: '/order_confirm', query: {order_id: orderId}})
取数据:this.$route.query.order_id
query
传参,路径可以使用path
或者name
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/03/12/vue-this-route-push-pass-parameters/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
THE END
0
二维码
打赏
海报
vue this.$router.push()传参
params传参
传数据:this.$router.push({name: 'OrderConfirm', params: {order_id: orderId}})
取数据:this.$route.params.order_id
注意:para……
文章目录
关闭
共有 0 条评论