React 组件渲染过程---自用

组件的生命周期

getDefaultProps : 初始化props
constructor:可以初始化state 使用constructor必须搭配super(), 否则this会报错
getDerivedStateFromProps:映射props到state
componentDidMount
shouldComponentUpdate
getSnapshotBeforeUpdate:在更新之前获取快照
componentDidUpdate
componentDidCatch

1、如果上述的钩子都存在, 在组件渲染过程中,会先走constructor 处理里面的逻辑,例:设置初始的state
2、再执行getDerivedStateFromProps钩子,return prevProps的操作就是将props的内容映射到state中,使用getDerivedStateFromProps钩子,需要先使用this.state
3、组件渲染的过程中都会走一遍componentDidMount钩子
4、如果有操作触发state更新,钩子会从getDerivedStateFromProps开始处理
5、再执行shouldComponentUpdate 钩子 满足条件后返回true 触发更新 走render函数
6、render之后还要看是否有进一步的更新操作
7、看是否有getSnapshotBeforeUpdate钩子拦截 它的返回值就是componentDidUpdate钩子的第三个参数 snapshot
8、不管是否有getSnapshotBeforeUpdate,都会继续走到componentDidUpdate钩子,如果在这个过程中还有操作引起state的内容变化,会再次从getDerivedStateFromPropsshouldComponentUpdaterendergetSnapshotBeforeUpdatecomponentDidUpdate

class App extends React.Component {
    static defaultProps = {
        name: "amin",
        unmount: false
    }
    constructor(props) {
        super(props);
        console.log(1)
        this.state = {
            num: 1
        }
    }
    static getDerivedStateFromProps (prevProps, prevState) {
        console.log(2)
        return prevProps
    }
    componentDidMount() {
        console.log(3)
    }
    shouldComponentUpdate(nextProps, nextState, nextContext) {
        console.log(4)
        console.log(nextProps, 'nextProps')
        console.log(nextState, "nextState")
        console.log(nextContext, "nextContext")
        return true
    }
    getSnapshotBeforeUpdate(prevProps, prevState) {
        console.log(prevProps, "prevProps")
        console.log(prevState, "prevState")
        console.log(5)
        return 5
    }
    componentDidUpdate(prevProps, prevState, snapshot) {
        console.log(prevProps, "prevProps")
        console.log(prevState, "prevState")
        console.log(snapshot, "snapshot")
        console.log(6)
        if (this.state.num !== snapshot) {
            this.setState({num: snapshot})
        }
    }

    componentWillUnmount() {
		// 组件销毁的时候执行的操作
		// 清空定时器 初始化状态管理器的内容等
		// 我们不能在组件销毁后设置state! 页面快速切换,有异步请求的情况下容易报这个错
		this.setState({ unmount: true })
    }

    btnClick = () => {
        const { num, unmount } = this.state
        if (unmount) return 
        // 假装这里是个异步操作  组件卸载的时候unmount为true 不进行下一步操作
        this.setState({ num: num + 1 })
    }

    render () {
        const { num } = this.state
        console.log(num, "num")
        return (
            <div>
                <div>{num}</div>
                <button onClick={this.btnClick}>+</button>
            </div>
        )
    }
}

export default App;

![在这里插入图片描述](https://img-blog.csdnimg.cn/20200622152055128.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2FtaW53YW5nYWE=,size_16,color_FFFFFF,t_70
在这里插入图片描述

componentDidCatch

可以拦截报错信息,防止出现页面级崩溃,在开发环境中使用,会一闪而过,打包之后在生产环境即可生效

import React from 'react';

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

        this.state = {
            num: 0
        }
    }

    componentDidMount() {

    }

    onPress = () => {
        let newNum = this.state.num + 1
        this.setState({
            num: newNum
        },()=>{
            if (this.state.num === 5){
                throw new Error('崩溃:Did you report the error today')
            }
        })
    }
    render() {
        return (
            <ErrorWrap>
                <button onClick={this.onPress}>
                    <div>点到崩溃</div>
                </button>
                正常
            </ErrorWrap>
        )
    }
}

class ErrorWrap extends React.Component {
    constructor(props) {
        super(props);
        this.state = {
            error: null
        }
    }

    componentDidCatch(error, errorInfo) {
        console.log(error)
        this.setState({ error })
    }

    render () {
        const { error } = this.state
        if (error) {
            return (
                <div>
                    <div style={{color: 'red'}}>
                        {error && error.toString()}
                    </div>

                </div>
            );
        }
        return this.props.children;
    }
}

class App extends React.Component {

    render () {
        return (
            <div>
                <ErrorWrap>
                    <Children />
                </ErrorWrap>
            </div>
        )
    }

}

export default App;

在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值