这样做的正确方法是将状态传递props给Docs组件.
props
Docs
但是,因为您正在使用React Router它,所以可以通过不同的方式访问它:this.props.route.param而不是默认方式this.props.param
React Router
this.props.route.param
this.props.param
所以你的代码应该或多或少看起来像这样:
和
{this.props.route.docs.map(function(study, key) { return Random text here; })}
Random text here