在Vue页面中,想要跳转到不同的页面,则需要使用router.push()方法,这个方法会向history栈中添加一个新的记录,点击浏览器后退按钮会返回到之前的URL。
Vue用router.push(传参)跳转同一页面,参数变化,跳转页面数据不刷新的解决办法:

// 全局作用 
// go 方法 在跳转后的路由观察路由变化,如果变化,刷新页面路由
watch: {
	'route'(to, from) {
		this.$router.go(0);
	}
}

// 单个页面
watch: {
	'route'(to, from) {
		let that = this
		if (to.params.id != from.params.id) {
			that.id = to.params.id;
			that.getData(); // 重新加载数据
		}
	}
},
mounted() {
	let that = this;
	that.id = that.$route.params.id;
	that.getData();
}
Logo

前往低代码交流专区

更多推荐