render() {
const increaseLikes = this.increaseLikes.bind(this);
...
}
推荐使用:在定义时使用箭头函数绑定指向当前词法作用域的this。
increaseLikes = () => {
看不懂