我正在传递一个函数和一个状态值引发auto-fit
运算符。 spread
中的state
值更新。但是在点击html
函数时根本没有调用。
在reactjs中使用button
运算符将function
发送给孩子的正确方法是什么?
这是我的代码:
spread
答案 0 :(得分:1)
在Counter
组件中,您拼写了func
名称。
class Counter extends React.Component {
render() {
return (
<div>
<div>{this.props.display}</div>
<button onClick={this.props.func}>+</button>
</div>
);
}
}