美文网首页
React 生命周期函数

React 生命周期函数

作者: 晴天的晴q | 来源:发表于2019-02-24 12:35 被阅读0次

生命周期函数是指在某一时刻组件会自动调用执行的函数(每一个组件都可以有)

v16.3 前的生命周期函数如下:

Initialization:setup props and state,调用 constructor 函数设置 props 和 state。

Mounting:componentWillMount -> render -> componentDidMount
(1)componentWillMount 在组件即将被挂载到页面上的时刻自动被执行
(2)componentDidMount 在组件被挂载到页面后自动被执行

Updating:
props:
componentWillReceiveProps -> shouldComponentUpdate (为true时继续,为false时则没有以下周期函数) -> componentWillUpdate -> render -> componentDidUpdate。
states:shouldComponentUpdate (为true时继续,为false时则没有以下周期函数) -> componentWillUpdate -> render -> componentDidUpdate。
(1)componentWillReceiveProps
        1)一个组件要从父组件接收参数
        2)如果这个组件第一次存在于父组件,不会执行
        3)如果这个组件之前已经存在于父组件中,才会执行
(2)shouldComponentUpdate 在组件被更新之前,会自动被执行(必须 return 一个布尔值)。
(3)componentWillUpdate 在组件被更新之前,会被自动执行;但会在 shouldComponentUpdate 之后执行,如果 shouldComponentUpdate 返回 true ,它才执行,如果返回 false ,则不执行。
(4)componentDidUpdate 在组件更新完成之后,会自动被执行。

Unmounting:componentWillUnmount 在组件将要被从页面中移除的时候,会被执行。

v16.4 以后:  将componentWillMount,  componentWillReceiveProps,  componentWillUpdate, 替换为 getDerivedStateFromProps, 并且在componentDidUpdate 前 render 后加了一个 getSnapshotBeforeUpdate 。

相关文章

  • RN-生命周期函数(新)

    旧版生命周期函数 react 16.4 以后生命周期函数 http://projects.wojtekmaj.pl...

  • React 生命周期函数

    https://reactjs.org/docs/react-component.html React生命周期函数...

  • React的生命周期函数

    一、生命周期函数的定义 在某个时刻自动被调用的函数是生命周期函数 二、React中生命周期函数示意图 三、生命周期...

  • 04.React高级部分(中)

    React的生命周期函数 React生命周期函数的使用场景 这一小节,我们来做两个生命周期相关的常用操作1.如何避...

  • useState

    react-hooks 如果你熟悉 React class 的生命周期函数,你可以把 useEffect Hook...

  • 四:React 进阶三 (生命周期)

    react(一):组件的生命周期 生命周期函数 在组件运行的某个时刻,会被自动执行的一些函数。 React生命周期...

  • React快速上手5-react中的事件和生命周期函数

    这节中我们将主要介绍react应用中的事件和生命周期函数 React事件 在react中,我们不用addEvent...

  • react生命周期函数

    react 生命周期函数介绍[https://www.cnblogs.com/kdcg/p/9182393.htm...

  • 2020-09-11

    REACT生命周期 (JS胖老师课程 ) 生命周期函数指在某一个时刻组件会自动调用执行的函数 REACT生命周期的...

  • React 生命周期

    React 16.4 的生命周期图 早期React生命周期图 从图中,我们看到了一些变化 废弃的三个生命周期函数 ...

网友评论

      本文标题:React 生命周期函数

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