为您显示代码说明:
b
在groupsScreen组件中,每个单个组组件都获得一个与其相关的组对象, 在主屏幕中的组表示中,您可以单击它,它会将您转到/ conversation_area,现在我知道我可以在url中传递该组的名称,然后遍历this.state.groups,这将工作,但我想知道是否有更好的方法来链接和路由之间进行通信...
group组件很简单,只是一个在其props中获得一个group对象的组件,并且它包装了group的所有设计。
非常感谢!
答案 0 :(得分:1)
如果组处于状态,则可以过滤状态以仅传递您想要的值。
<Route exact path="/conversation_area/:group_id" render={props => {
// filter out the object that you need from the groups.
const group = props.find(group => props.match.params.group_id === group.id)
// you now have access to that group information.
return (
<h1>bla bla</h1>
)}} />
我将在这里重组代码,并使用组件属性来传递组件。保持“路由”简单易行,以后将为您节省很多麻烦。