【发布时间】:2018-02-01 14:25:19
【问题描述】:
我正在尝试使用 react 路由器和 Warning: Unknown prop params on <a> tag. Remove this prop from the element. 创建个人资料页面我正在尝试将参数传递给路由,以便每个用户都有自己独特的页面加载他们的内容。我得到的解决方案是从 2015 年开始的,我不知道他们是否已将其删除。是否有将参数传递到路由路径的新/更新版本,或者我做错了什么?
<Route component={userProfile} path="/user/:userId" userIdentity={Meteor.userId()}/>
<p><Link to="/userProfile/:userId" params={{userId: Meteor.userId()}}>My Profile</Link></p>
【问题讨论】:
标签: reactjs meteor parameters react-router