标签: javascript reactjs
我有两个组件:Cell和Screen。 Cell旨在成为屏幕的孩子,我将使用它们:
Cell
Screen
<Screen> <Cell x={1} y={2}/> <Cell x={1} y={1}/> </Screen>
问题:我如何在x的{{1}}方法中获得y和Screen道具?像这样:
x
y
render
答案 0 :(得分:5)
在大多数情况下,您需要通过props访问它们。喜欢: children[0].props.x。
props
children[0].props.x