react入门与实战(三):react的生命周期(下)

这篇文章所包含的内容如下,方便检索:
react生命周期

正文

react的生命周期

上一回我们说到react的生命周期有分为常用以及不常用的几个生命周期,现在我们说一下关于生命周期如何去使用以及其调用顺序。

首先回顾下生命周期图谱


生命周期图

react的生命周期主要分为三个状态,分别是:挂载时更新时卸载时,而对于挂载和更新又会分为render阶段pre-commit阶段以及commit阶段

其实从图中就可以一目了然,'render’阶段其实是可以随时被打断的,也就意味着可能会进行多次的render。

文字太多不好,直接上代码

创建俩个组件,一个是父组件,一个是子组件,父组件可以决定子组件展示/隐藏。

import React from 'react';
import Child from "./Child";

class Father extends React.Component {
    constructor(props) {
        super(props);

        this.state = {
            showChild: true
        }
        console.log('Father.constructor');
    }

    static getDerivedStateFromProps(props, state) {
        console.log('Father.getDerivedStateFromProps');
        return state
    }

    componentDidMount() {
        console.log('Father.componentDidMount');
    }

    getSnapshotBeforeUpdate(prevProps, prevState) {
        console.log('Father.getSnapshotBeforeUpdate');
        // getSnapshotBeforeUpdate钩子return的数据会被
        // componentDidUpdate的第三个参数接收
        return null;
    }

    shouldComponentUpdate(nextProps, nextState, nextContext) {
        return true;
    }

    componentDidUpdate(prevProps, prevState, snapshot) {
        console.log('Father.componentDidUpdate');
    }

    componentWillUnmount() {
        console.log('Father.componentWillUnmount');
    }

    render() {
        console.log('Father.render');
        const {showChild} = this.state

        return <div>
            Father <br/>
            <button onClick={() => {
                console.log('点击' + (showChild ? '隐藏' : '展示') + '子元素btn');
                this.setState({showChild: !showChild})
            }}>{showChild ? '隐藏' : '展示'} -》 子元素
            </button>
            {showChild && <Child/>}
        </div>
    }
}

export default Father;

子组件

import React from 'react';

class Child extends React.PureComponent {
    constructor(props) {
        super(props);

        this.state = {
            a: true
        }
        console.log('Child.constructor');
    }

    static getDerivedStateFromProps(props, state) {
        console.log('Child.getDerivedStateFromProps');
        return state
    }

    componentDidMount() {
        console.log('Child.componentDidMount');
    }

    componentWillUnmount() {
        console.log('Child.componentWillUnmount');
    }

    render() {
        console.log('Child.render');
        return <div>
            Child
        </div>
    }
}

export default Child;

对于react来说,父组件嵌套子组件,在默认都展示的情况下,初次的展示逻辑为:
Father.constructor
Father.getDerivedStateFromProps
Father.render
Child.constructor
Child.getDerivedStateFromProps
Child.render
Child.componentDidMount
Father.componentDidMount

看起来非常的明显且眼熟,是不是跟vue的生命周期的挂载形式很像,vue是父组件beforeCreate、created、beMounted后 子组件优先走到mounted,父组件才mounted

组件渲染

所以react在挂载阶段是先父组件render 然后子组件render以及commit后,父组件再commit

点击切换按钮将子组件隐藏,会触发父组件更新以及子组件卸载


子组件卸载

父组件更新也是依次触发render然后等子组件完事再回到父组件commit。
所以生命周期的顺序执行其实根据前面的生命周期图谱就可以一目了然了。

react的生命周期的应用

只有类组件才有生命周期,函数式组件我们可以使用react hook模拟绝大多数的生命周期,单纯的函数式组件是没有生命周期的。

constructor

在react的class组件中,constructor可写可不写

// ①
constructor(props) { // props是父组件传递下来的
  super(props);
  this.state = {
    a: 1
  }
  // 此处可以给方法绑定this
  // 给对应方法添加防抖/节流功能
  // 获取props给对应的state属性赋值
  // ...
}
// ② 等同于
state = {
  a: 1
}

getDerivedStateFromProps

static getDerivedStateFromProps(props, state) {
  // 返回null表示什么都不做
  // 返回一个对象来更新state
  // 当前方法不能调用this
  // 常见用途:判断props|state是否符合需求,返回对应state
  // 按需筛选数据上报
  // ....
  return null
}

render

 // 在render里面能够获取当前组件的state以及props
const {a} = this.state;
const {b} = this.props;

// 能够写方法,仅在当前render内部使用,常用于结合jsx做判断
function typeOfShow(type) {
  return type === '1' ? '红色' : '黄色'
}

// ① 返回null或者返回空标签或者数字字符串或者布尔值
render(
  // return null // 但是不会渲染
  // return <></>
  // return 123
  // return 'test'
  // return true // 但是不会渲染
)
// ② 返回jsx
render(
  return <div>
    jsx-{typeOfShow(1)}
  </div>
)

componentDidMount

componentDidMount() {
  // 常在此处进行ajax请求或者获取dom
  console.log('componentDidMount');
  console.log(this)
  // axios.get('')
  this.timer = setInterval(() => {
    console.log('in.')
  }, 10000)
}

componentWillUnmount

  componentWillUnmount() {
    // 常在此生命周期进行副作用的清除以及异步请求的打断等...
    clearInterval(this.timer);
  }

getSnapshotBeforeUpdate

getSnapshotBeforeUpdate(prevProps, prevState) {
  // 在最近一次渲染输出(提交到 DOM 节点)之前调用
  // 不常用的生命周期,用于特殊需求中
  console.log('getSnapshotBeforeUpdate');
  // getSnapshotBeforeUpdate钩子return的数据会被
  // componentDidUpdate的第三个参数接收
  return null;
}

componentDidUpdate

componentDidUpdate(prevProps, prevState, snapshot) {
  // state更新后触发,可在此处进行dom操作异步请求等
 // 第三个参数是getSnapshotBeforeUpdate返回的
  console.log('componentDidUpdate');
}

shouldComponentUpdate

常用来做性能优化的生命周期,return false即可阻止渲染 首次渲染或使用 forceUpdate() 时不会调用该方法

shouldComponentUpdate(nextProps, nextState, nextContext) {
  console.log('shouldComponentUpdate');
  return true;
}

错误边界

getDerivedStateFromError

static getDerivedStateFromError(error) {
    // 更新 state 使下一次渲染可以显降级 UI
    return { hasError: true };
 }

componentDidCatch

componentDidCatch(error, info) {
    // "组件堆栈" 例子:
    //   in ComponentThatThrows (created by App)
    //   in ErrorBoundary (created by App)
    //   in div (created by App)
    //   in App
    logComponentStackToMyService(info.componentStack);
}

直接贴出官网的demo

class ErrorBoundary extends React.Component {
  constructor(props) {
    super(props);
    this.state = { hasError: false };
  }

  static getDerivedStateFromError(error) {
    // 更新 state 使下一次渲染可以显示降级 UI
    return { hasError: true };
  }

  componentDidCatch(error, info) {
    // "组件堆栈" 例子:
    //   in ComponentThatThrows (created by App)
    //   in ErrorBoundary (created by App)
    //   in div (created by App)
    //   in App
    logComponentStackToMyService(info.componentStack);
  }

  render() {
    if (this.state.hasError) {
      // 你可以渲染任何自定义的降级 UI
      return <h1>Something went wrong.</h1>;
    }

    return this.props.children;
  }
}

其他过时的生命周期现在都被标记为UNSAFE,也不建议使用
UNSAFE_componentWillMount
UNSAFE_componentWillReceiveProps
UNSAFE_componentWillUpdate

项目demo我会上传到GitHub,大家有需要可自行download

参考链接:
react
react lifecycle
GitHub-demo

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,723评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,003评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,512评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,825评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,874评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,841评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,812评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,582评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,033评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,309评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,450评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,158评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,789评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,409评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,609评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,440评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,357评论 2 352

推荐阅读更多精彩内容