路由本身有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.pid = pid;
      this.$router.push({ path, query: newQuery });

以上只是其中一种,至于对象的深拷贝浅拷贝需要自己整理一下

Logo

前往低代码交流专区

更多推荐