react 路由跳转传参
程序员文章站
2022-06-06 23:38:57
...
传值页面
this.props.history.push('/pages/'+ id)
接收页面
this.props.match.params.id
路由
<Route exact path="/page/:id" component={Page}/>