this.$router.push传递参数有2种方式

this.$router.push传递参数有2种方式:

传递参数 – this.$router.push({path: ’ 路由 ', query: {key: value}})

参数取值 – this.$route.query.key

使用这种方式,传递参数会拼接在路由后面,出现在地址栏.

传递参数 – this.$router.push({name: ’ 路由的name ', params: {key: value}})

参数取值 – this.$route.params.key

使用这种方式,参数不会拼接在路由后面,地址栏上看不到参数…

动态路由也是传递params的,所以在 this.$router.push() 方法中 path不能和params一起使用,否则params将无效。需要用name来指定页面。
————————————————
版权声明:转自「醒不了的星期八」的原创文章。
原文链接:https://blog.csdn.net/qq_39969226/article/details/102103206

你可能感兴趣的:(this.$router.push传递参数有2种方式)