我正在以下列方式使用React-Router来传递道具。
ReactDOM.render(
<Router history={hashHistory}>
<Route path='/about' component={About} propName="test prop" />
</Router>)
然后可以通过嵌套的道具数组访问道具:
this.props.routes[2]
这确实有效,但是有点痛苦,随着应用程序的大小增加,我可以看到这种情况变得难以理解。有没有更好的方法在React-Router中使用道具?
谢谢!
答案 0 :(得分:0)
正如Paul在上面提到的那样,react-router不用于渲染组件,所以这个问题确实没有意义。