我有一个eventHandler,我想要它的兄弟组件来处理它。 this.randomNumber = 555
内部有很多属性(例如构造函数内的<Brains />
),onLeftLeftMove
需要这些属性来处理事件。
render( ) {
<div>
<LeftControl onTouchMove={this.onLeftMove} />
<Brains ..wants to handle onLeftMove because onLeftMove needs access to a lot of properties inside Brains.. />
</div>
}
怎么做?