我可以在PureComponent中使用shouldComponentUpdate吗?

时间:2017-06-13 07:59:00

标签: javascript reactjs

我知道shouldComponentUpdate以及PureComponent的功能。但我想知道我是否可以将两者结合使用?

说我有很多道具,我想让PureComponent内的浅比较句柄。除了1道具,需要巧妙地进行比较。那么可以使用shouldComponentUpdate吗? React会考虑哪个结果?

换句话说,React会调用PureComponent浅层比较,然后调用我的shouldComponentUpdate吗?或者我的shouldComponentUpdate会覆盖原来的那个?

如果它是双层的,如果PureComponent返回false,那么控件会进入我的shouldComponentUpdate,我还有机会return false

1 个答案:

答案 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,您将失去浅层比较。