<Route path='/' parentProp='foo'>
<IndexRoute component={IndexComponent} />
<Route path='child' component={ChildComponent} childProp='bar'/>
</Route>
在我的ChildComponent中,我可以通过this.props.route.childProp访问childProp。现在,我还想以某种方式访问parentProp
,而无需明确地将其设置在子路由上。这可能吗?
我认为将道具传递给子项是有意义的,就像子/组件中所有来自url的routeParams一样。