vue-router传递参数方式详解

在开发项目中遇到需要携带参数跳转页面的需求,来记个笔记

方法1.(params传值)

以下是主页面跳转方法

toEditInfo() {
  this.$router.push({
       path: '/XXX/XXX',
       params:{
            edit:true
          }
    });
}

以下是目标页面方法

created(){
    this.editStatus =  this.$route.query.params;
    console.log('editStatus',this.editStatus )
}

提示:该方法传递的值不会在地址栏中显示,但刷新页面数据会消失

---------------------------------------------------------------------------------------------------------------------------------

 方法2.(query传值)

以下是主页面跳转方法

toEditInfo() {
  this.$router.push({
       path: '/XXX/XXX',
       query:{
            edit:true
          }
    });
}

以下是目标页面方法

created(){
    this.editStatus =  this.$route.query.edit;
    console.log('editStatus ',this.editStatus )
}

提示:该方法传递的值会在地址栏中显示,刷新页面数据不会消失

---------------------------------------------------------------------------------------------------------------------------------

方法3.(动态路由拼接)

以下是主页面跳转方法

toEditInfo() {
  this.$router.push({
       path: '/XXX/XXX/true'
    });
}

以下是目标页面方法

created(){
    this.editStatus =  this.$route.params.edit;
    console.log('editStatus ',this.editStatus )
}

这种方法需要修改路由

routes: [
    {
      path: '/XXX/XXX/:edit',
      name: 'auth',
      component:Auth
    }
  ]

提示:该方法传递的值会在地址栏中显示,刷新页面数据不会消失

重点重点重点:

在获取数据时是route不是router!!!!!

如果本文章对您有帮助,麻烦点个赞吧~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

宝藏程序员

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值