react页面之间的跳转及传值

A页面跳转到B页面,A页面发一个信号给路由router,然后由路由进入B页面,并不是由A直接跳转到B页面

A页面中,触发下面的一段代码,跳转到B页面, bb代表B页面的路由标识

   this.context.router.push({
      pathname: '/bb',
      query: { id: ID,             
               name:B,
},
   });

在B页面constructor方法中,实现接收A页面传值的代码即可。

constructor(props, context) {
  super(props, context);
  this.id = ""+ (props.location.query) ? props.location.query.id : null;
  this.name = ""+ (props.location.query) ? props.location.query.name : null;

}

B页面实现下边这个方法才能从其他页面跳转到B页面,这个方法在放在类的外边,放在“export default B”

B.contextTypes = {router:()=> React.PropTypes.func.isRequired };

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值