📜  将绑定函数反应到组件 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:12.991000             🧑  作者: Mango

代码示例1
class Foo extends Component {
  constructor(props) {
    super(props);
    this.handleClick = this.handleClick.bind(this);
  }
  handleClick() {
    console.log('Click happened');
  }
  render() {
    return ;
  }
}