Vue Router路由传参三种方法及区别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue Router路由传参三种方法及区别相关的知识,希望对你有一定的参考价值。
参考技术A 1、第一种方法:拼接方式:methods:
handleClick(id) //直接调用$router.push 实现携带参数的跳转
this.$router.push(path: `/detail/$id`,)
对应路由配置:
path:'/detail/:id',
name:'detail',
component: detail
获取参数方式: this.$route.params.id
2、第二种方法:params传参 (通过路由属性中的name来确定匹配的路由,通过params来传递参数。)
methods:
handleClick(id)
this.$router.push(name:'detail', // 根据name确定匹配路由params: id: id)
//或者采用router-link前往Detail页面
<router-link :to="name: 'detail', params: id: 1 ">前往Detail页面</router-link>
对应路由配置:
path:'/detail/:id',
name:'detail',
component: detail
获取参数方式: this.$route.params.id
三、第三种方法:query传参
使用path来匹配路由,然后通过query来传递参数,这种情况下 query传递的参数会显示在url后面?id=?
methods:
handleClick(id)
this.$router.push(path:'/detail',query: id: id)
对应路由配置:
path:'/detail',
name:'detail',
component: detail
//获取参数:this.$route.query.id
四、总结:params和query中的区别
1、接收方式
query传参:this.$route.query.id
params传参:this.$route.params.id
2、路由展现方式
query传参:/detail?id=1&user=123&identity=1&更多参数
params传参:/detail/123
Vue:路由传参的三种方式
文章目录
前言
vue 路由传参的使用场景一般都是应用在父路由跳转到子路由时,携带参数跳转。传参方式可划分为 params 传参和 query 传参,而 params 传参又可分为在 url 中显示参数和不显示参数两种方式,这就是vue路由传参的三种方式。
方式一:params 传参(显示参数)
params 传参(显示参数)又可分为 声明式 和 编程式 两种方式
1、声明式 router-link
该方式是通过 router-link 组件的 to 属性实现,该方法的参数可以是一个字符串路径,或者一个描述地址的对象。使用该方式传值的时候,需要子路由提前配置好参数,例如:
//子路由配置
path: '/child/:id',
component: Child
//父路由组件
<router-link :to="/child/123">进入Child路由</router-link>
2、编程式 this.$router.push
使用该方式传值的时候,同样需要子路由提前配置好参数,例如:
//子路由配置
path: '/child/:id',
component: Child
//父路由编程式传参(一般通过事件触发)
this.$router.push(
path:'/child/$id',
)
在子路由中可以通过下面代码来获取传递的参数值
this.$route.params.id
方式二:params 传参(不显示参数)
params 传参(不显示参数)也可分为 声明式 和 编程式 两种方式,与方式一不同的是,这里是通过路由的别名 name 进行传值的
1、声明式 router-link
该方式也是通过 router-link 组件的 to 属性实现,例如:
<router-link :to="name:'Child',params:id:123">进入Child路由</router-link>
2、编程式 this.$router.push
使用该方式传值的时候,同样需要子路由提前配置好参数,不过不能再使用 :/id 来传递参数了,因为父路由中,已经使用 params 来携带参数了,例如:
//子路由配置
path: '/child,
name: 'Child',
component: Child
//父路由编程式传参(一般通过事件触发)
this.$router.push(
name:'Child',
params:
id:123
)
在子路由中可以通过下面代码来获取传递的参数值
this.$route.params.id
注意:上述这种利用 params 不显示 url 传参的方式会导致在刷新页面的时候,传递的值会丢失
方式三:query 传参(显示参数)
query 传参(显示参数)也可分为 声明式 和 编程式 两种方式
1、声明式 router-link
该方式也是通过 router-link 组件的 to 属性实现,不过使用该方式传值的时候,需要子路由提前配置好路由别名(name 属性),例如:
//子路由配置
path: '/child,
name: 'Child',
component: Child
//父路由组件
<router-link :to="name:'Child',query:id:123">进入Child路由</router-link>
2、编程式 this.$router.push
使用该方式传值的时候,同样需要子路由提前配置好路由别名(name 属性),例如:
//子路由配置
path: '/child,
name: 'Child',
component: Child
//父路由编程式传参(一般通过事件触发)
this.$router.push(
name:'Child',
query:
id:123
)
在子路由中可以通过下面代码来获取传递的参数值
this.$route.query.id
以上是关于Vue Router路由传参三种方法及区别的主要内容,如果未能解决你的问题,请参考以下文章
vue中this.$router.push路由传参以及获取方法
Vue Router路由中 的$route.params和$route.query传参的区别和使用示例