我可以props
用传播运算符传递。IE,
<Component x={props.x} y={props.y} />
等于:
<Component {...props} />
我们可以在同名的组件定义中使用它。
我的问题是如何传递这样的函数?下面的等效代码是什么?
<Component handleClick = {this.handleClick}
anotherHandleClick = {this.anotherHandleClick}/>
编辑:
handleClick
上面的行将把函数传递anotherHandleClick
给孩子。有没有这样的东西<Component {...Fns} />
,每个函数都会作为同名的道具传递下去。