admin管理员组文章数量:1339022
I have two ponents: Cell
and Screen
. Cell
is intended to be a child of screen, I'm going to use them like this:
<Screen>
<Cell x={1} y={2}/>
<Cell x={1} y={1}/>
</Screen>
The question: How I can get x
and y
props inside Screen
's render
method? Something like this:
render() {
var {children} = this.props
children[0].x // it doesn't work
...
I have two ponents: Cell
and Screen
. Cell
is intended to be a child of screen, I'm going to use them like this:
<Screen>
<Cell x={1} y={2}/>
<Cell x={1} y={1}/>
</Screen>
The question: How I can get x
and y
props inside Screen
's render
method? Something like this:
render() {
var {children} = this.props
children[0].x // it doesn't work
...
Share
Improve this question
edited Nov 9, 2017 at 11:24
JackHasaKeyboard
1,6951 gold badge17 silver badges30 bronze badges
asked Oct 25, 2015 at 9:17
kharandziukkharandziuk
12.9k18 gold badges74 silver badges127 bronze badges
7
- 2 In general, try to send information or state down into children, rather than having children send them up to their parents. – Hyung Cho Commented Oct 25, 2015 at 15:49
- ^^ agreed, try storing the cells' x/y properties in the Screen ponent or above it, and pass these values down to the Cells. – Dylan Commented Oct 25, 2015 at 17:36
- Yep, it's nice as a general advice. But we have a concrete case. What the interface do you propose instead? – kharandziuk Commented Oct 25, 2015 at 17:52
-
To keep code maintainable, pass anything that
<Screen>
needs as a prop to<Screen>
, and leave the children alone. Also, you should not update props. Possible duplicate of stackoverflow./questions/26610392/… – wintvelt Commented Oct 25, 2015 at 21:44 - have you heard of flux? – John Ruddell Commented Oct 26, 2015 at 5:07
1 Answer
Reset to default 17You need to access them through props
, in most of the cases. Like:
children[0].props.x
.
本文标签: javascriptGet child property in ReactStack Overflow
版权声明:本文标题:javascript - Get child property in React - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743570570a2504299.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论