vue路由跳转 传参数

本文详细介绍了在Vue中如何进行路由跳转并传递参数,包括不带参数的跳转,使用params隐式传参(不显示在URL),以及query显式传参(URL可见)。强调了params和query在不同场景下的适用性和配置注意事项。
摘要由CSDN通过智能技术生成

路由跳转
一、 不带参数,name,path都行

//1、html
<router-link :to="{name:'home'}"> 
<router-link :to="{path:'/home'}"> 
//2、或js
this.$router.push('/home')
this.$router.push({name:'home'})
this.$router.push({path:'/home'})

二、params传参,跳转之后页面 url后面不会拼接参数
路由配置 path: “/home/:id” ,只能用 name

//1、 html
<router-link :to="{name:'home', params: {id:1}}">  
//2、或js
this.$router.push({name:'home',params: {id:'1'}})
//获取
this.$route.params.key

三、query传参,参数相当于从连接里带过去
配置路由path: “/home/:id” 后不可用path,不配置路由可用path

//1、html
<router-link :to="{name:'home', query: {id:1}}"> 
//2、或js
this.$router.push({name:'home',query: {id:'1'}})
//获取
this.$route.query.key
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值