this.$route.params
时间: 2023-04-20 20:02:35 浏览: 281
这是一个Vue.js项目中路由参数的对象。通过这个对象,我们可以访问当前路由中的动态参数。例如,如果当前路由为/user/:id,那么可以通过this.$route.params.id访问id参数。
相关问题
this.$route.params和this.$route.query
this.$route.params是Vue Router中用于接收通过路由中的参数传递的值的方式。通过this.$route.params可以获取到路由中通过params传递的参数值。
而this.$route.query则是用于接收通过路由中的查询参数传递的值的方式。通过this.$route.query可以获取到路由中通过query传递的参数值。
两者的区别在于,params传参需要在路由定义中指定name,并且通过name来引入路由,而query传参则直接通过键值对的方式在URL中进行传递。另外,params传参在切换路由时使用的是name来指定目标路由,而query传参则使用path来指定目标路由。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [vue中this.$route.query和this.$route.params & query传参和params传参的使用和区别](https://blog.csdn.net/weixin_44867717/article/details/109773945)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
this.$route.params与this.$route.query的用法
在Vue.js中,`this.$route.params`和`this.$route.query`是两种获取路由参数的不同方式。
`this.$route.params`是一个对象,包含了当前路由中的动态路由参数。例如,如果你有一个路由为`/user/:id`,那么你可以通过`this.$route.params.id`来获取当前的`id`。
`this.$route.query`也是一个对象,包含了当前路由中的查询参数。例如,如果你有一个路由为`/user?id=123`,那么你可以通过`this.$route.query.id`来获取当前的`id`。
需要注意的是,动态路由参数和查询参数可以同时存在于同一个路由中。例如,一个路由为`/user/:id?name=John`,那么你可以通过`this.$route.params.id`和`this.$route.query.name`来获取它们的值。
总之,`this.$route.params`和`this.$route.query`都是非常方便的获取路由参数的方法,你可以根据自己的需求选择其中的一种或两种同时使用。
阅读全文