React生命周期

作者: 简约酒馆 | 来源:发表于2019-11-17 17:30 被阅读0次

    学习文档:http://projects.wojtekmaj.pl/react-lifecycle-methods-diagram/

    组件从初始化到更新到销毁的过程

    React生命周期  大致三个阶段

    挂载时  

    1.constructor   构造方法

    2.componentWillMount     组件渲染前

    3.render                组件渲染

    4. componentDidMount   组件挂载完成      适合网络获取数据

    更新时

    1.shouldcomponentUpdata    组件是否更新    必须返回一个布尔值

    2.componentWillUpdata       组件更新前

    3.render                重新渲染

    4.componentDidUpdata          组件更新完成

    卸载时

    componentWillUnmount   组件销毁前  主要清理一些缓存,以及定时器

    生命周期方法到了特定的阶段自动执行的方法


    相关文章

      网友评论

        本文标题:React生命周期

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