在React构造函数中绑定内置方法

时间:2019-06-27 12:14:25

标签: reactjs

我应该对内置的React方法执行.bind(this)吗?

this.componentDidMount = this.componentDidMount.bind(this)
this.componentWillUnmount = this.componentWillUnmount.bind(this)

1 个答案:

答案 0 :(得分:1)

不,您不需要。

这些方法已经由React实现,this将是您的类的this,而不是函数。