使用this.$router.go(-1),如何传递参数
时间: 2023-07-04 18:21:11 浏览: 284
使用this.$router.go(-1)无法传递参数。这个方法只是简单地导航回上一个历史记录记录位置,并不会传递参数。如果你需要在导航回上一个页面时传递参数,你可以考虑使用this.$router.push()方法来实现。例如:
```
this.$router.push({
path: '/previous-page',
query: {
param1: 'value1',
param2: 'value2'
}
})
```
在这个例子中,我们使用this.$router.push()方法来导航到前一个页面,并通过query参数传递了一些参数。在前一个页面中,你可以通过this.$route.query来访问这些参数,例如:
```
console.log(this.$route.query.param1) // 输出:value1
console.log(this.$route.query.param2) // 输出:value2
```
相关问题
this.$router 传递函数
在Vue的路由中,this.$router是VueRouter实例,它具备导航功能的函数。通过使用this.$router的方法,如push、go、replace,可以实现路由跳转。比如,使用this.$router.push({ name:'xxx', params:{ id:id} })可以进行路由跳转,并传递参数。<span class="em">1</span><span class="em">2</span><span class="em">3</span><span class="em">4</span>
this.$router.go如何跳过锚点
this.$router.go方法用于进行页面的前进或后退操作。它接受一个参数,表示跳转的步数。当参数为正数时,表示向前跳转;当参数为负数时,表示返回(相当于back)。所以如果要跳过锚点,可以通过设置跳转步数为负数来实现。例如,使用this.$router.go(-2)可以跳过两个页面,包括锚点页面,返回到前两个页面。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [VUE this.$route 和 this.$router](https://blog.csdn.net/weixin_42371145/article/details/105289960)[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^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文