- 路由形式如下,id为参数:
xxx/xxx/:id
- 在该页面中获取id:
const id = this.props.match.prarms.id
- 跳转至该路由:
this.props.history.push(`/xxx/xxx/${id}`)
xxx/xxx/:id
const id = this.props.match.prarms.id
this.props.history.push(`/xxx/xxx/${id}`)
本文标题:react:获取路由参数及跳转
本文链接:https://www.haomeiwen.com/subject/qzchrctx.html
网友评论