美文网首页
React——生命周期

React——生命周期

作者: 天外来人 | 来源:发表于2016-05-30 10:05 被阅读122次

三大阶段:
创建期:在组件创建的时候出现
存在期:在组件发生属性或者状态数据改变的时候
销毁期:组件从页面中移除的时候

创建期

1 getDefaultProps 设置默认属性
2 getInitialState 设置初始状态
3 componentWillMount 组件将要被构建(虚拟dom)
4 render 组件渲染输出虚拟dom
5 componentDidMount 组件已经构建完成(真是dom)

var Div = React.createClass({
  getDefaultProps: function() {
    console.log('我是:getDefaultProps');
    return {};
  },
  getInitialState: function(){
    console.log('我是:getInitialState');
    return {};
  },
  componentWillMount: function() {
    console.log('我是:componentWillMount');
  },
  render: function) {
    console.log('我是:render');
    return (
      <div>我叫好奇心日报</div>
    );
  },
  componentDidMount: function() {
    console.log('我是:componentDidMount');
    console.log(ReactDOM.findDOMNode(this));
  }
});

先来看下执行顺序:

Paste_Image.png
执行顺序是自上而下依次执行
需要注意点:
  • 第一个阶段(getDefaultProps):我们无法访问任何数据,因此此函数执行完毕之后,组件才拥有了属性。
  • 第二个阶段(getInitialState):我们可以访问到属性,但是访问不到状态。因此在这个阶段我们可以用属性为初始化状态赋值。
  • 第三个阶段(componentWillMount): 我们可以访问到属性和状态
  • 第四个阶段(render): 我们可以访问到属性和状态,但是访问不到真实dom元素
  • 第五个阶段(componentDidMount): 我们可以访问到真实dom元素,通过ReactDOM.findDOMNode(this)此方法。

存在期

1 componentWillReceiveProps 组件即将接收新的属性
2 shouldComponentUpdate 组件是否应该更新
3 componentWillUpdate 组件即将更新
4 render 渲染输出虚拟DOM
5 componentDidUpdate 组件已经更新完毕

var Div = React.createClass({
 componentWillReceiveProps: function(nextProps) {
    console.log('我是:componentWillReceiveProps');
  },
 shouldComponentUpdate: function(nextProps, nextState){
    //第一个参数表示新的属性
    //第二个参数表示新的状态
    console.log('我是:shouldComponentUpdate');
    return true;
  },
 componentWillUpdate: function(nextProps, nextState) {
    //第一个参数表示新的属性
    //第二个参数表示新的状态
    console.log('我是:componentWillUpdate');
  },
  render: function) {
    console.log('我是:render');
    return (
      <div>我叫好奇心日报</div>
    );
  },
  componentDidUpdate: function(nextProps, nextState) {
    //第一个参数表示上一个属性
    //第二个参数表示上一个状态
    console.log('我是:componentDidUpdate');
    console.log(ReactDOM.findDOMNode(this));
  }
});

需要注意点:

  • 第一个阶段(componentWillReceiveProps): 这个阶段的触发只能由属性改变触发。在此阶段我们可以将属性数据,转化成状态数据。
  • 第二个阶段(shouldComponentUpdate): 这个阶段必须有返回值。 true表示可以更新,false表示不可以更新。
  • 第三个阶段(componentWillUpdate): 这个阶段更新了属性和状态。
  • 第四个阶段(render): 这个阶段更新了虚拟DOM,因此前面的方法访问的都是旧的虚拟DOM,只有最后一个阶段访问的才是新的虚拟DOM
  • 第五个阶段(componentDidUpdate) 这个阶段可以访问到新的虚拟DOM

销毁期

componentWillUnmount: 在删除组件之前进行清理操作,比如计时器和事件监听。

相关文章

  • React概念图

    React概念图 React组件生命周期概念图 参考文档:React入门教程 组件生命周期React:组件生命周期...

  • React基础篇之组件的生命周期

    引出生命周期 react生命周期(旧) react生命周期(新) getSnapshotBeforeUpdate的...

  • React生命周期

    React v16.0前的生命周期 React v16.4+ 的生命周期图 React v16.9后这些生命周期钩...

  • React v16 生命周期

    React 16 生命周期 React 16.3 新增的生命周期方法 逐渐废弃的生命周期方法: 一般将生命周期分成...

  • 学习并实现react (4)

    实现生命周期 生命周期介绍 React 生命周期图 React 子组件在父组件下的生命周期流程 实现 compon...

  • React面试题 整理脑图

    react基础 React生命周期 react-router react进阶 react Hooks redux 其他

  • react/vue常见问题整理

    一、react 1. react生命周期 react 16生命周期相对于15的变化:componentWillMo...

  • React 组件生命周期

    组件生命周期 参考阅读: component-lifecycle react组件生命周期过程说明 react 组件...

  • 《深入React技术栈》学习笔记Ⅲ

    以下的生命周期都是在 React 15 的生命周期, React 16 的生命周期 API 已经发生变化。Reac...

  • React总结

    [toc] 1.React组件生命周期 1.1 生命周期图 组件的生命周期的图如下: 具体可参考React 组件生...

网友评论

      本文标题:React——生命周期

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