React的生命周期

2020-03-05  本文已影响0人  鹤仔z

基于react16.x版本,保持更新

生命周期介绍

带 * 标识的为重要、常用的生命周期。

生命周期的分类

  1. 只会执行一次的生命周期(挂载、卸载过程的生命周期)
    • constructor()
    • componentWillMount
    • componentDidMount
    • componentWillUnmount
  2. 执行多次的生命周期(更新过程的生命周期)
    • componentWillReceiveProps
    • shouldComponentUpdate
    • componentWillUpdate
    • render
    • componentDidUpdate
  3. 初始化页面的时候执行的生命周期
    • constructor
    • componentWillMount
    • render
    • componentDidMount
  4. 当this.props改变的时候会执行哪些生命周期
    • componentWillReceiveProps
    • shouldComponentUpdate
    • componentWillUpdate
    • render
    • componentDidUpdate
  5. 当this.setState执行的时候会执行哪些生命周期
    • shouldComponentUpdate
    • componentWillUpdate
    • render
    • componentDidUpdate
上一篇 下一篇

猜你喜欢

热点阅读