欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

Vue中this.$router.push参数如何获取

程序员文章站 2022-04-26 08:23:46
...
1.Params

由于动态路由也是传递params的,所以在 this.$router.push() 方法中path不能和params一起使用,否则params将无效。需要用name来指定页面。

及通过路由配置的name属性访问

在路由配置文件中定义参数:

Vue中this.$router.push参数如何获取

通过name获取页面,传递params:

Vue中this.$router.push参数如何获取

在目标页面通过this.$route.params获取参数:

Vue中this.$router.push参数如何获取

2.Query

页面通过path和query传递参数,该实例中row为某行表格数据

Vue中this.$router.push参数如何获取

在目标页面通过this.$route.query获取参数:

this.$route.query.row.xxx

以上就是Vue中this.$router.push参数如何获取的详细内容,更多请关注其它相关文章!