Warning: setState(...): Can only
2020-04-28 本文已影响0人
kofzx
报这个警告,十有八九是没有成功removeEventListener所致,我就是这样的。这里引用stackoverflow上原文的链接。
大致意思就是bind会new一个新的函数出来,所以addEventListener也好,removeEventListener都别使用bind去传listener的参,我们在constructor里面bind就好了:
constructor(props) {
super(props);
this.onScroll = this.onScroll.bind(this);
}
也是挺坑的,在此记录一下。