代码改变世界

React生命周期

2018-04-27 21:57  @疯狂的迈步  阅读(505)  评论(0编辑  收藏  举报

在我们编程过程中对于React学习最重要的就是生命周期了,学习react生命周期对于自己的编程也会有很大的帮助。

如果你基础够好的话建议直接看代码https://github.com/facebook/react/blob/master/src/renderers/dom/tests/ReactDOMProduction-test.js#L89-L175,从代码中可以看出ReactDOM的生成过程,下面详讲React的生命周期:

  1. 实例化
  • getDefaultProps
    调用 React.createClass,然后触发getDefaultProps 方法,该方法返回一个对象,然后与父组件指定的props对象合并,最后赋值给 this.props 作为该组件的默认属性,该方法只调用一次

  • getInitialState
    初始化state 的值,返回值会赋给this.state,在这个方法里,你已经可以访问到this.props。

  • componentWillMount
    操作state,不会触发再次渲染,建议用constructor代替

  • render
    根据 state 的值,生成页面需要的虚拟 DOM 结构

  • componentDidMount
    可以设置state,会触发再次渲染,组件内部可以通过 ReactDOM.findDOMNode(this)来获取当前组件的节点操作DOM

  1. 存在期
  • componentWillReceiveProps(nextProps)
    当组件接收到新的props时会触发该函数,通常可以调用this.setState方法来比较this.props和nextProps的执行状态,完成对state的修改

  • shouldComponentUpdate(nextProps, nextState
    该方法用来拦截新的props或state,然后判断是否更新组件

  • componentWillUpdate(nextProps, nextState)
    更新之前调用

  • rende
    根据diff算法,生成需要更新的虚拟DOM数据

  • componentDidUpdate(prevProps, prevState)
    render方法成功执行之后,会渲染出来真实的DOM,你可以在该方法中使用this.getDOMNode()方法访问原生DOM

  1. 销毁&清理期
  • componentWillUnmount
    会触发componentWillUnmount,通常是移除DOM,取消事件绑定,销毁定时器等工作

参考文献:
理解React 组件
React组件的生命周期
React生命周期解析

文章来自我的github:https://github.com/junhey/studyNotes/issues/24