我知道shouldComponentUpdate
以及PureComponent
的功能。但我想知道我是否可以将两者结合使用?
说我有很多道具,我想让PureComponent
内的浅比较句柄。除了1道具,需要巧妙地进行比较。那么可以使用shouldComponentUpdate
吗? React会考虑哪个结果?
换句话说,React会调用PureComponent
浅层比较,然后调用我的shouldComponentUpdate
吗?或者我的shouldComponentUpdate
会覆盖原来的那个?
如果它是双层的,如果PureComponent
返回false,那么控件会进入我的shouldComponentUpdate
,我还有机会return false
。
答案 0 :(得分:9)
您首先要在开发环境中收到警告React source code,以便在处理PureComponent
时查看方法是否已定义:
if (
isPureComponent(Component) &&
typeof inst.shouldComponentUpdate !== 'undefined'
) {
warning(
false,
'%s has a method called shouldComponentUpdate(). ' +
'shouldComponentUpdate should not be used when extending React.PureComponent. ' +
'Please extend React.Component if shouldComponentUpdate is used.',
this.getName() || 'A pure component',
);
}
然后,在渲染时,如果定义了这个方法,那么它实际上是skip
甚至不检查组件是否为PureComponent
并使用您自己的实现。
if (inst.shouldComponentUpdate) {
if (__DEV__) {
shouldUpdate = measureLifeCyclePerf(
() => inst.shouldComponentUpdate(nextProps, nextState, nextContext),
this._debugID,
'shouldComponentUpdate',
);
} else {
shouldUpdate = inst.shouldComponentUpdate(
nextProps,
nextState,
nextContext,
);
}
} else {
if (this._compositeType === ReactCompositeComponentTypes.PureClass) {
shouldUpdate =
!shallowEqual(prevProps, nextProps) ||
!shallowEqual(inst.state, nextState);
}
}
因此,通过在shouldComponentUpdate
上实施自己的PureComponent
,您将失去浅层比较。