vue-router路由不变改变query的值
路由本身有query参数,更新了query,也push了,页面url不改变,这个时候其实用到了对象的拷贝,你需要对query对象做拷贝let query = this.$router.history.current.query;let path = this.$router.history.current.path;//对象的拷贝let newQuery = JSON.parse(JS...
·
路由本身有query参数,更新了query,也push了,页面url不改变,这个时候其实用到了对象的拷贝,你需要对query对象做拷贝
let query = this.$router.history.current.query;
let path = this.$router.history.current.path;
//对象的拷贝
let newQuery = JSON.parse(JSON.stringify(query));
newQuery.id= id;
this.$router.push({ path, query: newQuery });
更多推荐
已为社区贡献7条内容
所有评论(0)