问题
项目中碰到一个问题,从页面A->B->C之间携带参数跳转,刷新B页面或从C页面返回B页面时,A传给B的参数消失了,变成了undefined。
跳转路由的方式
this.$router.push({ path: "/form", query: { row } });
解决方法
在A页面跳转路由之前用JSON.stringify()将query中的参数从object类型转换为string类型的JSON对象,然后再在B页面用JSON.parse()转换回来即可。
修改后的代码
跳转之前的页面
row = JSON.stringify(row)
this.$router.push({ path: "/form", query: { row } });
跳转之后的页面
this.$route.query.row = JSON.parse(this.$route.query.row)
this.title = this.$route.query.row.name;
this.formList = this.$route.query.row.form;
测试后参数不会消失