javascript - Get child property in React - Stack Overflow

I have two ponents: Cell and Screen. Cell is intended to be a child of screen, I'm going to use th

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
 |  Show 2 more ments

1 Answer 1

Reset to default 17

You need to access them through props, in most of the cases. Like: children[0].props.x.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743570571a4472824.html

相关推荐

  • javascript - Get child property in React - Stack Overflow

    I have two ponents: Cell and Screen. Cell is intended to be a child of screen, I'm going to use th

    1天前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信