网站首页 » react 性能优化

React性能优化之

React的优化是基于shouldComponentUpdate的,该生命周期默认返回true,所以一旦prop或state有任何变化,都会引起重新render。 shouldComponentUpdate {...this.props}?(不要滥用,请只传递component需要的props,传得太多,或者层次传得太深,都会加重s[...]