TypeError: Cannot read property ‘setState’ of undefined
相信很多初学React的同学都差不多遇到过这个错误。
在js中,function中的this代表调用这个函数的object,也就是谁调用这个函数,那么this就指向谁,这个object可以是window,可以使document,也可以是button。
这个特性导致了React中一个常见的的找不到this的问题,且看下面的代码。
1 | import React, {Component} from "react"; |
以上代码运行的时候会出现如下错误:
TypeError: Cannot read property 'setState' of undefined
为啥呢?
我们来分析一下,函数handleClick中有一个this,而ES6 Class中的方法默认不绑定this,所以出错了。怎么解决?两个办法:
方法一:将handleClick改为箭头函数,因为箭头函数中的this指向该函数所在的组件,如下:
1 | handleClick = () => { |
方法二:用bind函数将调用的函数绑定到组件上,一般我们在constructor中做这个绑定,上面的代码可以变为:
1 | class ThisTest extends Component { |
当然网上还有其他方法,比如使用React.createClass来创建组件,这样会自动将this绑定到组件上,但这种创建组件的方法已经不推荐使用了,或者在render函数中绑定this,如下:
1 | <button onClick={this.handleClick.bind(this)}>hello</button> |
或者直接将箭头函数写在调用处,如下:
1 | <button onClick={() => this.handleClick}>hello</button> |
这两种方法会有轻微的性能问题,因为每次render函数调用时都会重新分配handleClick这个函数。
推荐第一种方法,简单方便,没有副作用。