Vue 路由跳转传参

vue跳转到指定界面 

this.$router.push({ path: url });

返回上一层 

this.$router.go(-1);

vue界面跳转传递参数

一丶通过name来确定匹配的路由

this.$router.push({ path: '/init/doucfg/search',name:'search',params:{search:value}});
获取参数方法:  this.$route.params.search;

name: "路由下面定义的name";

params : 上述例子传递是一个key为search的值

二丶通过path携带的参数(动态路由)

this.$router.push({ path: '/init/myadmexp/details/'+id});
获取参数方法:    this.$route.params.id;
//此方法需要在路由的path中配置   /:id
{
  path: 'myadmexp/details/:id',
  name: 'search',
  component: search
}

三丶通过query来传递参数,使用此方法传递的参数会出现在url地址中

this.$router.push({ path: '/init/myadmexp/details/',query:{id:code}});
获取参数方法:  this.$route.query.id;

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值