react-动态路由


代码

  • 设置
<Route path="/newsInfo/:nid" component={NewsInfo} />
  • 取值
{this.props.match.params.nid}

效果图

react-动态路由_取值


react-动态路由_取值_02