this.$router.go如何跳过锚点
时间: 2023-10-13 18:02:59 浏览: 151
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 ]
相关问题
vue this.$router
在Vue中,this.$router是Vue Router的实例对象,可以用来访问和操作路由。它提供了一些方法和属性,例如:
1. this.$router.push(location):跳转到指定的路由。
2. this.$router.replace(location):跳转到指定的路由,但是不会生成新的历史记录。
3. this.$router.go(n):在浏览器历史记录中向前或向后移动n个步骤。
4. this.$router.back():后退一页。
5. this.$router.forward():前进一页。
6. this.$router.currentRoute:当前路由的信息对象。
this.$router.go(-1)要调用2次
可能是因为你需要先调用一次 `this.$router.back()` 方法将页面返回到上一页,然后再调用一次 `this.$router.go(-1)` 方法将页面返回到上上一页。如果仍然不行,你可以尝试使用 `this.$router.push({ path: '/' })` 方法将页面跳转到首页,然后再使用 `this.$router.go(-2)` 方法将页面返回到上上一页。希望这能帮到你。
阅读全文