this.$router.push跳转页面后并刷新页面
时间: 2023-09-28 16:06:58 浏览: 597
Vue this.$router.push(参数)实现页面跳转操作
在 Vue.js 中,`this.$router.push` 方法会进行页面的跳转,但不会刷新页面。如果你希望在页面跳转后刷新页面,可以考虑使用以下方法:
1. 通过给 `this.$router.push` 方法传递一个新的 `key` 参数来实现强制刷新。例如:
```javascript
this.$router.push({
path: '/your-path',
query: { key: Math.random() }
});
```
在目标页面中,可以通过 `this.$route.query.key` 获取到 `key` 的值,并在页面的某个地方使用该值,触发页面重新渲染。
2. 使用 `window.location.reload()` 方法来刷新页面。在跳转完成后,可以手动调用该方法来刷新当前页面。例如:
```javascript
this.$router.push('/your-path').then(() => {
window.location.reload();
});
```
注意,这种方式会刷新整个页面,可能导致数据丢
阅读全文