路由传参的方式:
1、手写完整的 path:
this.$router.push({path: `/user/${userId}`});
获取参数:this.$route.params.userId
2、用 params 传递:()
this.$router.push({name:'user', params:{userId: '123'}});
获取参数:this.$route.params.userId
url 形式:url 不带参数,http:localhost:8080/#/user
如果用params传参,则目标路由只能写name,不能写path,否则参数params会是undefined
错误示范:this.$router.push({path:'user', params:{userId: '123'}});
3、用 query 传递:
this.$router.push({path:'/user', query:{userId: '123'}});
获取参数:this.$route.query.userId
url 形式:url 带参数,http:localhost:8080/#/user?userId=123
同样的规则也适用于 router-link 组件的 to 属性。
直白的说,query 相当于 get 请求,页面跳转的时候可以在地址栏看到请求参数,params 相当于 post 请求,参数不在地址栏中显示。
- 本文链接:http://horry233.github.io/2021/03/08/vue-router%E7%9A%84%E5%87%A0%E7%A7%8D%E4%BC%A0%E5%8F%82/
- 版权声明:本博客所有文章除特别声明外,均默认采用 许可协议。
若没有本文 Issue,您可以使用 Comment 模版新建。
GitHub Issues