shouldComponentUpdate -> componentWillUpdate -> render() -> componentDidUpdate -> componentWillUnmount(组件死完前调用)
mount之前不能setState
shouldComponentUpdate有什么用?为什么它很重要?
shouldComponentUpdate允许我们手动进行判断是否要进行组件更新,根据组件的应用场景设置函数的合理返回值能够帮我们避免不必要的更新。
shouldComponentUpdate -> componentWillUpdate -> render() -> componentDidUpdate -> componentWillUnmount(组件死完前调用)
mount之前不能setState
shouldComponentUpdate允许我们手动进行判断是否要进行组件更新,根据组件的应用场景设置函数的合理返回值能够帮我们避免不必要的更新。
本文标题:React的生命周期
本文链接:https://www.haomeiwen.com/subject/qrjcultx.html
网友评论