React Router this.props.history获取传值的方式

306 阅读1分钟

 待跳转页面:

this.props.history.push({
      pathname: '/RftAddContact',
      param: {
        key:remindData,
      }
})

跳转目标页面:

const params = this.props.location.query.remindData;

到此 history获取传值的方式介绍完成。