1、
react报错 TypeError: Cannot read property 'setState' of undefined
为什么会出现这种情况呢?
因为点击按钮时,到了handleClick()方法中的this已经不是组件里的this了。
解决方法:
1、手动更改this的指向
2、箭头函数
箭头函数除了代码少。与普通函数最大的不同就是:this是由声明该函数时候定义的,一般是隐性定义为声明该函数时的作用域this。
2、
改为
var _createHashHistory = _interopRequireDefault(require("history").createHashHistory);
然后重启项目
3、