React生命周期

钩子 函数触发时机
constructor创建组件时,最先执行,初始化的时候只执行一次
render每次组件渲染都会触发(注意: 不能在里面调用setState() 会陷入死循环
componentDidMount组件挂载(完成DOM渲染)后执行,初始化的时候执行一次
componentDidUpdate组件更新后(DOM渲染完毕)
componentWillUnmount组件卸载(从页面中消失)

注意:只有类组件才有生命周期

组件挂载完成渲染

class App extends Component {
  constructor() {
    super()
    console.log("1.constructor")
  }
  componentDidMount () {
    console.log("3.componentDidMount")
  }
  render () {

    console.log("2.render")
    return (
      <div>
        生命周期测试
      </div>
    )
  }
}

React 在 开发环境下会刻意执行两次渲染,以防止组件内有什么 side effect 引发 bug,提早预防。这里官方github上有做出解释: 

组件更新时的生命周期 

class App extends Component {
  state = {
    count: 0
  }
  UpdateData = () => {
    this.setState({
      count: this.state.count + 1
    })
  }
  componentDidUpdate () {
    //组件更新时触发
    console.log("componentDidUpdate")
  }
  render () {
    return (
      <div>
        生命周期测试
        <button onClick={this.UpdateData}>{this.state.count}</button>
      </div>
    )
  }
}

组件卸载的生命周期 

class SonA extends Component {

  componentWillUnmount () {
    //组件被卸载时触发
    console.log("componentWillUnmount")
  }
  render () {
    return (
      <div>
        组件卸载测试
      </div>
    )
  }
}

class App extends Component {
  state = {
    count: 0,
    onoff: true
  }
  UpdateData = () => {
    this.setState({
      count: this.state.count + 1,
      onoff: !this.state.onoff
    })
  }
  render () {
    console.log("2.render")
    return (
      <div>
        生命周期测试
        {this.state.onoff ? <SonA /> : ""}
        <button onClick={this.UpdateData}>{this.state.count}</button>
      </div>
    )
  }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值