假设我有这样的嵌套组件:
<root />
<comp1 />
<comp2 />
<target id={this.props.id}>
<div>click me</div>
我想让点击目标在 root 上运行一个函数:
//on root component
this.action = function(id){}
我是否需要在链中的每个组件上手动设置一个属性,就像在 React 教程示例中一样?提琴手
<root />
<comp1 clickHandler={this.action}/>
<comp2 clickHandler={this.clickHandler}/>
<target id={this.props.id} clickHandler={this.clickHandler} />
<div onClick={this.props.clickHandler.bind(this, this.props.id)}>click me</div>
或者有什么方法可以像普通 DOM 一样冒泡事件?