其他分享
首页 > 其他分享> > 使用路由传递信息

使用路由传递信息

作者:互联网

0. 需求

在某个页面获得前个页面的东西,因为不是父子级关系,显然就整路由传参比较OK

1. 路由

//$router : 是路由操作对象,只写对象
//$route : 路由信息对象,只读对象

//操作 路由跳转
this.$router.push({
      name:'hello',
      params:{
          name:'word',
          age:'11'
     }
})

//读取 路由参数接收
this.name = this.$route.params.name;
this.age = this.$route.params.age;

2. param与query

使用params传参只能使用name进行引入路径

使用query传参Name path都可以引入路径

img

标签:传参,name,age,传递信息,params,使用,route,路由
来源: https://www.cnblogs.com/lepanyou/p/15597269.html