vue-router params无法传参的问题(路由传参)

在Vue.js应用中遇到路由传参问题,当使用params进行组件间传参时,从搜索框跳转能成功传递,但直接在展示页面内搜索无法传递params参数。通过将`this.$router.push`更改为`this.$router.replace`解决了问题。了解`push`与`replace`的区别,push会在历史记录中增加新条目,而replace则不会,点击返回按钮时不会再次进入replace的页面。
摘要由CSDN通过智能技术生成

代码纠正

由于搜索框(带params参数)与展示页面(带query参数)分布在两个组件,所以需要进行路由传参。但在实现过程中发现:通过搜索框从主页跳转至展示组件时能带上params参数,但在展示页面内输入搜索则无法再传递params参数。

原代码如下:(点击搜索调用goSearch函数)

    goSearch() {
        console.log(this.keyword)
      let location = {
        name: "Search",
        path:"/Search",
        params: {
          keyword: this.keyword || undefined,
        },
        query:this.$route.query
      };
      this.$router.push(location);

解决办法:将this.$router.push改为this.$router.replace

    goSearch() {
        console.log(this.keyword)
      let location = {
        name: "Search",
        path:"/Search",
        params: {
          keyword: this.keyword || undefined,
        },
        query:this.$route.query
      };
      this.$router.replace(location);
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值