美文网首页
Warning: setState(...): Can only

Warning: setState(...): Can only

作者: kofzx | 来源:发表于2020-04-28 21:42 被阅读0次

    报这个警告,十有八九是没有成功removeEventListener所致,我就是这样的。这里引用stackoverflow上原文的链接

    大致意思就是bind会new一个新的函数出来,所以addEventListener也好,removeEventListener都别使用bind去传listener的参,我们在constructor里面bind就好了:

    constructor(props) {
      super(props);
      this.onScroll = this.onScroll.bind(this);
    }
    

    也是挺坑的,在此记录一下。

    相关文章

      网友评论

          本文标题:Warning: setState(...): Can only

          本文链接:https://www.haomeiwen.com/subject/jbliwhtx.html