遇到需要切换页面显示,重新请求接口但是前端路由不变时的一种处理方法
项目基于element-UI开发。页面左侧菜单控制右半部分内容显示,但是设计稿上有几个差异较大的页面需要共用一个路由,高亮显示菜单。 网上搜索一番后决定采取query传参的方式来在同一个路由上切换显示不同页面。
watch: {
$route(to, from) {
// 获取query中的参数
if (to.query.param1) {
this.param1 = to.query.param1
}
},
},
methods: {
...
edit(id) {
this.$router.push({ path: '/xxx/xxx', query: { id: id } })
},
...
}
效果->路由发生改变并跳转到了当前页面,同时页面左侧菜单高亮保持不变,数据进行了重新加载
跳转当前路由可能遇到如下错误
message: "Navigating to current location (XXX) is not allowed"
此时在src/router/index.js里导入router的后面追加如下方法即可
import VueRouter from 'vue-router'
...
// fix Navigating to current location
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}