list页->detail页
方法一:路由参数
路由导航:
用“/”
<Link to={‘/detail/‘+item.get(‘id‘)} key={index}>
路由map:
加"/:id"
<Route exact path="/detail/:id" component={Detail} />
detail页获取参数:
准确的获取到id,不需要做处理
this.props.match.params.id
方法二:查询参数
路由导航:
用“?”
<Link to={‘/detail?‘+item.get(‘id‘)} key={index}>
路由map:
不加"/:id"
<Route exact path="/detail" component={Detail} />
detail页获取参数:
不能准确的获取到id,需要做处理
this.props.location.search
原文地址:https://www.cnblogs.com/superlizhao/p/9493651.html
时间: 2024-10-02 00:47:12