zl程序教程

您现在的位置是:首页 >  工具

当前栏目

react-动态路由

路由React 动态
2023-09-27 14:26:50 时间

react-动态路由

  • 学习资源推荐:https://blog.csdn.net/qq_42813491/article/details/90213353

代码

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

效果图

在这里插入图片描述


在这里插入图片描述