🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
`React.PureComponent`与`React.Component`完全相同,只是它为你处理了`shouldComponentUpdate()`方法。当属性或状态发生变化时,PureComponent 将对属性和状态进行**浅比较**。另一方面,一般的组件不会将当前的属性和状态与新的属性和状态进行比较。因此,在默认情况下,每当调用`shouldComponentUpdate`时,默认返回 true,所以组件都将重新渲染。 ## 参考 [react面试题](https://github.com/semlinker/reactjs-interview-questions)