美文网首页
React的生命周期

React的生命周期

作者: 我也不知道啊丶 | 来源:发表于2019-01-15 15:20 被阅读0次

中文文档:State&生命周期-React
英文文档:StateandLifecycle–React

简单来说,一个组件的生命周期可以分为四个部分:

  1. 创造 - 生
  2. 挂载到页面
  3. 更新
  4. 毁灭 - 死

用js来写个简单的例子

let app = document.getElementById('app');

//create div
let div = document.createElement('div');
div.style.border = '1px solid red';

let state = 0;
div.innerHTML = `
    <p>${state}</p>
    <button>+1</button>
    <button>die</button>
`;

//mount div
app.appendChild(div);

div.querySelector('button').onClick = () => {
    state += 1;
    //update div
    div.querySelector('p').innerText = state;
};

div.querySelectorAll('button')[1].onClick = () => {
    //清理事件监听
    div.querySelector('button').onClick = null;
    div.querySelectorAll('button')[1].onClick = null;
    div.remove();
    //destroy div
    div = null;  
};

再来看看React的生命周期



值得注意的是,函数是没有生命周期的,只有class组件有

来看看React的生命周期里有哪些钩子

import React from "react";
import ReactDOM from "react-dom";
import "./styles.css";

let div = document.createElement("div");
document.body.appendChild(div);
console.log = function(content) {
  div.innerHTML += `${content}<br>`;
};

class Baba extends React.Component {
  constructor() {
    super();
    this.state = {
      hasChild: true
    };
  }
  onClick() {
    this.setState({
      hasChild: false
    });
  }
  callSon() {
    this.setState({
      word: "你还好吧"
    });
  }
  render() {
    return (
      <div>
        我是你爸爸
        <button onClick={() => this.onClick()}>kill son</button>
        <button onClick={() => this.callSon()}>call son</button>
        {this.state.hasChild ? <App word={this.state.word} /> : null}
      </div>
    );
  }
}

class App extends React.Component {
  onClick() {
    console.log("用户点击了");
    this.setState({
      n: this.state.n + 1
    });
  }
  updateX() {
    this.setState({
      x: this.state.x + "!"
    });
  }
  constructor() {
    super();
    this.state = {
      n: 0,
      x: "不展示"
    };
  }
  componentWillMount() {
    console.log("将要 mount App");
  }
  render() {
    // update
    console.log("填充/更新 App 的内容");
    return (
      <div className="App">
        {this.state.n}
        <br />
        我爸说 {this.props.word}
        <br />
        <button onClick={() => this.onClick()}>+1</button>
        <button onClick={() => this.updateX()}>update x</button>
      </div>
    );
  }
  componentDidMount() {
    console.log("mount App 完毕");
  }
  componentWillUpdate() {
    console.log("update App 之前");
  }
  shouldComponentUpdate(nextProps, nextState) {
    console.log("要不要更新呢?");
    if (this.state.n === nextState.n) {
      console.log('不更新')
      return false;
    } else {
      console.log('更新')
      return true;
    }
  }
  //update is render
  componentDidUpdate() {
    console.log("update App 之后");
  }
  componentWillUnmount() {
    console.log("App 快要死了,记得喂狗");
  }
  componentWillReceiveProps() {
    console.log("我爸说话了");
  }
}

const rootElement = document.getElementById("root");
ReactDOM.render(<Baba />, rootElement);

关于React生命周期的几道面试题

生命周期的哪个阶段异步请求数据?

componentDidMount
最主要的原因是:

  1. 在componentWillUnMount中无法确保在执行render前已经获得了异步请求的数据,componentDidMount不存在这个问题;
  2. 为了性能的需要,React下一代tiao'he
  3. 无法保证ajax请求在组件的更新阶段里成功返回数据,有可能当我们进行setState处理的时候,组件已经被销毁了。

请说出所有的生命周期钩子

  1. constructor()
  2. componentWillMount() // 将要Mount
  3. render() // 填充/更新
  4. componentDidMount() // Mount 完毕
  5. componentWillUpdate // 更新之前
  6. componentDidUpdate // 更新之后
  7. componentWillUnmount() // 组件被销毁之前,只能由父组件销毁子组件
  8. componentWillReceiveProps() // 父组件向子组件传值了
  9. shouldComponentUpdate() //是否要更新

相关文章

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

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

  • React概念图

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

  • React生命周期

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

  • React v16 生命周期

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

  • 学习并实现react (4)

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

  • react/vue常见问题整理

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

  • React面试题 整理脑图

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

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

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

  • React 组件生命周期

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

  • React总结

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

网友评论

      本文标题:React的生命周期

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