性能相关

组件懒加载React.lazy(...)

shouldComponentUpdate(nextProps, nextState){ return  true/false ;}

PureComponent,继承自Component,内置了shouldComponentUpdate的实现,使用浅比较

React.memo,跟PureComponent类似,只是React.Memo是函数,一般用于函数式组件


一个不大明了了概念:

重现渲染和重新调用

重新调用是否是每次页面展示都会重新调用?