美文网首页
react生命周期

react生命周期

作者: MrAlexLee | 来源:发表于2019-06-27 18:28 被阅读0次

    react组件生命周期可以从初次渲染和状态更新两个方面来进行分析。

    初次渲染

    first step:componentWillMount

    componentWillMount(){
    //render之前
    }
    更新state不在这里进行set是因为在这里调用setstate是不会触发re-render的,而是会进行state合并,且inst.state = this._processPendingState(inst.props, inst.context)是在componentWillMount之后执行的,因此componentWillMount中的state并不是最新的,在render中才可以获取更新后的this.state。

    相关文章

      网友评论

          本文标题:react生命周期

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