React 生命周期函数,一看就懂

 什么是生命周期函数:

  在某一时刻组件会自动调用执行的函数

//组件挂载之前执行
componentWillMount() {
    console.log('componentWillMount')
}

//组件更新之前执行 返回true需要更新组件,返回false不需要更新组件
shouldComponentUpdate(nextProps, nextState, nextContext) {
    console.log('shouldComponentUpdate')
    return true
}

//组件更新之前、shouldComponentUpdate之后执行,shouldComponentUpdate返回true才会执行
componentWillUpdate(nextProps, nextState, nextContext) {
    console.log('componentWillUpdate')
}

//组件更新完成之后执行
componentDidUpdate(prevProps, prevState, snapshot) {
    console.log('componentDidUpdate')
}

//组件要从父组件接受参数
//只要父组件render执行了,本函数才会执行
//如果这个组件第一次存在于父组件中,不会执行
//如果这个组件之前已经存在于父组件中,才会执行
componentWillReceiveProps(nextProps, nextContext) {
    console.log('componentWillReceiveProps')
}

//当组件要被移除时执行
componentWillUnmount() {
    console.log('componentWillUnmount')
}

//组件挂载之后执行  (ajax请求放在这里)
componentDidMount() {
    console.log('componentDidMount')
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值