传值页面
this.props.history.push('/pages/'+ id)
接收页面
this.props.match.params.id
路由
<Route exact path="/page/:id" component={Page}/>
传值页面
this.props.history.push('/pages/'+ id)
接收页面
this.props.match.params.id
路由
<Route exact path="/page/:id" component={Page}/>