React中的bind

作用:需要在事件处理程序中访问父组件,同样需要把该函数绑定到组件。

如何将函数绑定到组件实例,可以使用以下几种方法:

1.Constructor中绑定(ES2015)

constructor(props) {
    super(props);
    this.handleClick = this.handleClick.bind(this);
  }

2.在Render中使用bind绑定(可能会影响性能)

 render() {
    return ;
  }

3.类属性

 handleClick = () => {
    console.log('Click happened');
  }

4.Render中使用箭头函数(影响性能)

render() {
    return ;
  }

 

 

你可能感兴趣的:(React)