当前位置:   article > 正文

RuoYi-Vue 全新 Pro 版本:清除url地址栏路由参数_vue删除url参数

vue删除url参数
问题:当前页面保存数据后,要清空当前地址栏的参数。

页面A开始跳转到B

  1. //页面A跳转
  2. this.$router.push({
  3. path: "你的path",
  4. query: {
  5. id: id,
  6. },
  7. });

页面B开始接收数据

  1. //页面B,在你需要的地方进行接收
  2. this.$route.query.id
当点击保存后,开始清空url
  1. //简写
  2. this.$router.replace({ query: {} });
  1. const query = { ...this.$route.query };
  2. if (query.id) {
  3. delete query.id;
  4. //$router.replace() 方法更新路由,但不改变浏览历史
  5. this.$router.replace({ query });
  6. }

两个方法都可以。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/904287
推荐阅读
相关标签
  

闽ICP备14008679号