vue 路由传参的基本方式

本文详细介绍了在Vue.js中如何通过点击按钮从父组件跳转到子组件,并传递不同类型的参数。包括使用字符串路径、路由名称带params参数以及编程式跳转带query参数的方法,同时展示了对应的子组件如何接收并打印这些参数。示例代码涵盖了从父组件(My.vue)到子组件(Home.vue, About.vue)的完整流程。
摘要由CSDN通过智能技术生成

举例说明

点击父组件的button按钮跳转到子组件中,并携带参数,便于子组件获取数据

父组件:My.vue

<template>
  <div id="my">我的组件
    <button @click="goHome">跳转到首页</button> //方法goHome
  </div>
</template>

父组件:My.vue

export default {
  name: "my",
  data(){
    return {
      id:1000
    }
  },
  mounted() {
      console.log(this.$route.params);//My的路由地址
  },
  methods: {
    goHome(){
      console.log(this.$router);  //My的路由地址
    },
  },
};

1.字符串路径

methods: {
goHome(){
      //字符串路径
      this.$router.push("/");
      //或者
      this.$router.push({path:'/'});
      }
}

需要对应路由配置如下:

{
    path: '/',
    name: 'Home',
    component: Home
  },

Home.vue 子组件

<template>
  <div class="home">
    首页组件
  </div>
</template>
<script>
export default {
  name: 'Home',
  mounted() {
    //获取路由路径get传值
    console.log(this.$route);
  },
}
</script>

输出结果:
在这里插入图片描述
浏览器界面:
点击My跳转到Home组件
在这里插入图片描述

2.以路由名称 跳转带参 params

methods: { 
goHome(){
 //以路由名称 跳转带参   params
  this.$router.push({name:'About',params:{id:10}});}
  }

需要对应路由配置如下:

{
    path: '/about/:id',
    name: 'About',
    component:About
  },

About.vue 子组件

<template>
  <div class="about">
     关于组件
  </div>
</template>
<script>
export default {
   name:'about',
   mounted() {
     //挂载完成获取路由的动态传值
     //this.$router  类似history对象的一个api
     //this.$route 这个api是当前路由的相关匹配参数
     console.log(this.$route);
     console.log(this.$route.params.id);
   },
}
</script>

输出结果:
在这里插入图片描述
浏览器界面:
点击My跳转到About组件
在这里插入图片描述

3. 编程式跳转 get传值 query

methods: { 
goHome(){
         this.$router.push({path:'/',query:{id:1,name:'abc'}});
      // 或者 this.$router.push({name:"Home",query:{id:1,name:'abc'}});
  }

需要对应路由配置如下:

 {
    path: '/',
    name: 'Home',
    component: Home
  },

子组件为Home.vue

<template>
  <div class="home">
    首页组件
  </div>
</template>

<script>
export default {
  name: 'Home',
  mounted() {
    //获取路由路径get传值
    console.log(this.$route.query);
    console.log(this.$route);
  },
}
</script>

输出结果:
在这里插入图片描述
浏览器界面:
点击My跳转到Home组件
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值