• react之Component存在的2个问题


    问题

    • 只要执行setState(),即使不改变状态数据,组件也会重新render()
    • 只当前组件重新render(),就会自动重新render子组件

    原因

    • Component中的shouldComponentUpdate()总是返回true

    思路

    • 只有当组件的state或props数据发生改变时才重新render()

    解决

    • 重写shouldComponentUpdate()方法:比较新旧state或props数据,如果有变化才返回true,如果没有返回false
    • 使用PureComponent:PureComponent重写了shouldComponentUpdate()方法,只有state或props数据有变化才返回true。(只进行state和props数据的浅比较,如果只是数据对象数据变了,返回false)

    案例

    import React, { PureComponent } from 'react'
    import './index.css'
    
    export default class Parent extends PureComponent {
        state = { carName: '奔驰' }
        changeCar = ()=>{
            this.setState({carName:'五菱'})
        }
        // shouldComponentUpdate(nextProps,nextState){
        //     console.log('this.state:',this.state,'this.props:',this.props,'nextProps:',nextProps,'nextState:',nextState);
        //     return !(this.state.carName === nextState.carName)
        // }
        render() {
            console.log('Parent-render');
            const { carName } = this.state
            return (
                <div className='parent'>
                    <h5>parent组件</h5>
                    <span>我的车是:{carName}</span>&nbsp;&nbsp;&nbsp;
                    <button onClick={this.changeCar}>换车</button>
                    <Child car='木马'></Child>
                </div>
            )
        }
    }
    
    class Child extends PureComponent {
        // shouldComponentUpdate(nextProps,nextState){
        //     console.log('this.state:',this.state,'this.props:',this.props,'nextProps:',nextProps,'nextState:',nextState);
        //     return !(this.props.car === nextProps.car)
        // }
        render() {
            console.log('Child-render');
            return (
                <div className='child'>
                    <h5>child组件</h5>
                    <div>Child组件从Parent组件拿到的车是:{this.props.car}</div>
                </div>
            )
        }
    }	
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41

    样式文件:

    .parent{
        width: 500px;
        background-color: aqua;
        padding: 20px;
    }
    
    .child{
        width: 90%;
        background-color:bisque;
        padding: 20px;
        margin-top: 30px;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    效果实现:
    在这里插入图片描述

  • 相关阅读:
    关于 Oracle 中字段值为 NULL 时的排序顺序
    【密码学代码分享】突破ECDSA算法封装--JS无三方包纯手写ECDSA
    HMM隐马尔可夫模型最详细讲解与代码实现
    基础课8——中文分词
    Gateway:网关
    DateTimeUtils 日期时间相关的工具类
    shiro
    027-从零搭建微服务-搜索服务(一)
    Vue——Mixin混入、插件、scoped样式
    X32位汇编和X64位区别无参函数分析(一)
  • 原文地址:https://blog.csdn.net/S2763427717/article/details/134298058