美文网首页工作生活
React的生命周期shouldComponentUpdate(

React的生命周期shouldComponentUpdate(

作者: SherrinfordL | 来源:发表于2019-07-03 16:16 被阅读0次

使用shouldComponentUpdate()以让React知道当前状态或属性的改变是否不影响组件的输出,默认返回ture,返回false时不会重写render,而且该方法并不会在初始化渲染或当使用forceUpdate()时被调用,我们要做的只是这样:

shouldComponentUpdate(nextProps, nextState) {
return nextState.someData !== this.state.someData
}

相关文章

网友评论

    本文标题:React的生命周期shouldComponentUpdate(

    本文链接:https://www.haomeiwen.com/subject/qwhchctx.html