React 性能优化(学习笔记)

370 阅读1分钟

shouldComponentUpdate(简称SCU)

SCU基本用法 image.png 默认值返回为true, image.png

image.png

PureComponent(SCU中实现了浅比较)

image.png PureComponent一般适用于class组件 如下:

image.png memo一般适用于函数组件 如下: image.png

immutable.js

image.png 类似深拷贝,但不是深拷贝 image.png