react-动态路由

 

 

代码

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

效果图

react-动态路由_react-动态路由


react-动态路由_react_02