美文网首页
2018-09-03 Warning: setState(...

2018-09-03 Warning: setState(...

作者: 6seaq | 来源:发表于2018-09-03 13:44 被阅读4次

出现的原因是组件卸载之后调用了setState({}),网络请求耗时时间长,直接返回了某个页面。

componentWillMount() {
        this._isMounted = true;
      }

componentWillUnmount() {
          this._isMounted = false;
      }

异步请求返回结果之后判断再setState

if (this._isMounted) {
            this.setState({});
        }

相关文章

网友评论

      本文标题:2018-09-03 Warning: setState(...

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