如何使用反应虚拟化的公共方法updatePosition?

时间:2017-10-12 03:01:37

标签: reactjs react-virtualized

文档:https://github.com/bvaughn/react-virtualized/blob/master/docs/WindowScroller.md#updateposition

但我查看来源:https://github.com/bvaughn/react-virtualized/blob/master/source/WindowScroller/WindowScroller.js

这不是一个公共方法,所以当其他元素大小发生变化时,如何使用此方法更新滚动位置?

1 个答案:

答案 0 :(得分:1)

  

但我查看了源代码......这不是公共方法

它是right here,它有some unit tests too

要使用它,您需要将ref设置为WindowScroller。这是我的意思的最小例子:

class YourComponent extends React.Component {
  render() {
    return (
      <WindowScroller
        ref={this._setRef}
        {...otherProps}
      />
    );
  }

  _setRef = ref => {
    this.windowScrollerRef = ref;
  }

  someOtherMethod() {
    // Assuming you've mounted, you can access public methods like:
    this.windowScrollerRef.updatePosition();
  }
}