美文网首页
生命周期(1)

生命周期(1)

作者: Heily99 | 来源:发表于2020-08-14 10:08 被阅读0次

    ==> mounting(一次)

    - constructor----------------(初始化数据使用)

    - componentWillMount ------ 挂载之前(做动画)

    - render ------------------第一次渲染(第一次渲染时要处理的逻辑)

    - componentDidMount ------挂载之后(请求数据,拿到真实的dom)

    ==> updating

    - shouldComponentUpdate----- 性能优化,如果写了就必须返回一个布尔值,默认为true,当为false的时候updation阶段停止

    - componentWillUpdate -------- 数据更新之前

    - componentWillReceiveProps ----- 父组件数据发生改变的时候触发

    - componentDidUpdate ---------- 数据更新之后

    ==> unmounting

    - componentWillUnmount -------- 组件销毁时调用

    相关文章

      网友评论

          本文标题:生命周期(1)

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