1、   
this.props.history.push({ path : '/page' ,query : {key: 'value'}})
this.props.location.query.key

2、
this.props.history.push({ pathname: '/page',state: {key: 'value'}})
this.props.location.state.key

3、
this.props.history.push({ pathname:`/page`})