标签: reactjs
我应该对内置的React方法执行.bind(this)吗?
.bind(this)
this.componentDidMount = this.componentDidMount.bind(this) this.componentWillUnmount = this.componentWillUnmount.bind(this)
答案 0 :(得分:1)
不,您不需要。
这些方法已经由React实现,this将是您的类的this,而不是函数。
this