共计 259 个字符,预计需要花费 1 分钟才能阅读完成。
React 16.8 周期函数
- shouldComponentUpdate(nextProps, nextState):你能够通过这个办法管制组件是否从新渲染。如果返回 false 组件就不会从新渲染。这个生命周期在 React.js 性能优化上十分有用 。
- componentWillReceiveProps(nextProps):组件从父组件接管到新的 props 之前调用。
- componentWillUpdate():组件开始从新渲染之前调用。
- componentDidUpdate():组件从新渲染并且把更改变更到实在的 DOM 当前调用。
正文完