我将Autosizer,List和CellMeasurer组件与React虚拟化9一起使用。列表数据更改后,我需要更新行高。看来,由于在版本9中进行了更改以支持React Fiber,所以CellMeasurer的唯一公共(public)方法现在是measure()。大多数示例使用以前的resetMeasurementForRow()方法。当前的CellMeasurer doc似乎没有有关新公共(public)方法的任何信息。不知道我是否忽略了某些内容,但可以提供任何帮助。

const cache = new CellMeasurerCache({
  defaultHeight: 60,
  fixedWidth: true
});

<AutoSizer>
  {({ width, height }) => (
    <List
      deferredMeasurementCache={cache}
      height={height}
      ref={element => { this.list = element; }}
      rowCount={list.length}
      rowHeight={cache.rowHeight}
      rowRenderer={this.rowRenderer}
      width={width}
    />
  )}
</AutoSizer>

rowRenderer({ index, key, parent, style }) {
  return (
    <CellMeasurer
      cache={cache}
      columnIndex={0}
      key={key}
      overscanRowCount={10}
      parent={parent}
      ref={element => { this.cellMeasurer = element; }}
      rowIndex={index}
    >
      {({ measure }) => {
        this.measure = measure.bind(this);

        return <MyList index={index} data={list[index]} style={style} />;
      }}
    </CellMeasurer>
  );
}

componentWillReceiveProps(nextProps) {
  // Some change in data occurred, I'll probably use Immutable.js here
  if (this.props.list.length !== nextProps.list.length) {
    this.measure();
    this.list.recomputeRowHeights();
  }
}

最佳答案



诚然,可以针对新的CellMeasurer改进文档。但是,在这种情况下,您需要做两件事来响应行数据/大小的更改:

  • 如果特定列表项的大小已更改,则需要清除其缓存大小,以便可以重新测量它。您可以通过在clear(index)上调用CellMeasurerCache来实现。 (传递已更改的行的index。)
  • 接下来,您需要让List知道其大小信息需要重新计算。您可以通过调用 recomputeRowHeights(index) 来实现。 (传递已更改的行的index。)

  • 有关类似于您所描述内容的示例,请查看我使用react-virtualized构建的示例Twitter-like app。您可以看到源here

    09-12 08:20