定义为函数的纯组件将始终重新呈现.
将组件转换为类并防止在shouldComponentUpdate()中重新呈现为false.
签名是shouldComponentUpdate(nextProps, nextState)
.说,你通过验证组件的参数没有改变来阻止重新渲染:
shouldComponentUpdate(nextProps, nextState){ return !equals(nextProps, this.props); // equals() is your implementation }