bunny笔记|React-进阶篇(理解生命周期)

第二章 进阶篇

React的生命周期
生命周期.png
  • 概念

组件的生命周期可以帮助我们清楚的剖析一个组件从创建到销毁的全部流程:
如果能够做到知其然且知其所以然,那么在后期多组件、中大型项目开发过程中,就能够很好的把控项目的性能细节。

创建时:constructor -> render -> React更新DOM和refs -> componentDidMount

在组件初始化阶段会执行

constructor 
static getDerivedStateFromProps()
componentWillMount/USAFE_componentWillMount
render()
componentDidMount()

更新时:(New props、setState、forceUpdate)-> render -> React更新DOM和refs ->componentDidUpdata

props或state的改变可能会引起组件的更新,组件重新渲染的过程中会调用以下的方法

componentWillReceiveProps()
UNSAFE_componentWillReceiveProps()
static getDerivedStateFromProps()
shouldComponentUpdate()
componentWillUpdata()/USAFE_componentWillUpdata()
render()
getSnapshotBeforeUpdate()
componentDidUpdate()

卸载时(销毁):componentDidUnmount

componentWillUnmount()

错误处理

componentCatch()
  • 钩子函数运转

钩子函数

    class Life extends React.Component{
        // 1)初始化阶段
        constructor(props){
            super(props);
            console.log('constructor(props)');
        }

        componentWillMount(){
            console.log('componentWillMount');
        }

        render(){
            console.log('render()');
            return (
                

测试组件的钩子函数!

) } componentDidMount(){ console.log('componentDidMount'); } // 2) 更新阶段 componentWillUpdate(){ console.log('componentWillUpdate()'); } componentDidUpdate(){ console.log('componentDidUpdate()'); } // 3) 卸载阶段 componentWillUnmount(){ console.log('componentWillUnmount()'); } // 4) 错误处理 componentDidCatch(){ console.log('componentDidCatch()'); } } ReactDOM.render(, document.getElementById('app'));
  • 钩子函数原理剖析

定时器演示钩子函数

    class Life extends React.Component{
        // 1)初始化阶段
        constructor(props){
            super(props);
            console.log('constructor(props)');
            this.state = {
                age: 1
            }
        }

        componentWillMount(){
            console.log('componentWillMount');
        }

        render(){
            console.log('render()');
            return (
                

我是树妖,今年{this.state.age}岁了!

) } componentDidMount(){ console.log('componentDidMount'); // 开启定时器 this.intervalId = setInterval(()=>{ console.log('定时器在工作了'); // 更新状态 this.setState({ age: this.state.age + 1 }) }, 1000); } // 2) 更新阶段 componentWillUpdate(){ console.log('componentWillUpdate()'); } componentDidUpdate(){ console.log('componentDidUpdate()'); } // 3) 卸载阶段 componentWillUnmount(){ console.log('componentWillUnmount()'); // 清除定时器 clearInterval(this.intervalId); } // 4) 错误处理 componentDidCatch(){ console.log('componentDidCatch()'); } } ReactDOM.render(, document.getElementById('app'));
  • Diff算法和虚拟DOM

虚拟DOM和diff算法是React中非常核心的两个概念,我们需要对此有一个很全面的认知!
对于我们用脚手架开发项目,尤其是企业中前后端分离的项目(类
似:后台管理系统)等有很大的帮助!

虚拟DOM内部执行流程
1)用JavaScript 对象结构表示DOM 树的结构;然后用这个树构建一个真正的 DOM 树,插到文档当中;
2)当状态变更的时候,重新构造一棵新的对象树。然后用新的树和旧的树进行比较,记录两棵树差异:
3)把步骤2所记录的差异应用到步骤1所构建的真正的DOM树上视图就更新了。

虚拟DOM原理剖析
Virtual DOM 本质上就是在JS 和DOM 之间做了一个缓存。可以
类比CPU 和硬盘,硬盘读取速度比较慢,我们会就在它们之间加加缓存条,反之,既然DOM 运行速度慢,那么我们就在JS 和DOM 之间加个
缓存。JS只操作Virtual DOM,最后的时候再把变更的结果写入 DOM。

Diff算法
a)如果两棵树的根元素类型不同,React会销毁旧树,创建新树
b)对于类型相同的React DOM元素,React会对比两者的属性是否相同,只更新不同的属性:当外理完这个DOM节点,React就会递归处理子节点。
c)遍历插入元素,如果没有key,React将改变每一个子删除重新创建;为了解决这个问题,React提供了一个 key属性。当子节点带有key属性,Resct会通过key来匹配原始树和后来的树。

执行过程:通过绑定key,React就知道带有key '1024'的元素时新的,对于'1025'和'1026'仅仅移动位置即可。
key的使用注意点

九宫格布局案例
(要求:按照九宫格算法的要求,添加/删除盒子,并且做好边界值处理 考查知识点:虚拟DOM Diff算法 state管理)




    
    React 练习
    


    

你可能感兴趣的:(bunny笔记|React-进阶篇(理解生命周期))