복붙노트

[REACTJS] 방법 가상화 반응의 공개 방법 updatePosition를 사용 하는가?

REACTJS

방법 가상화 반응의 공개 방법 updatePosition를 사용 하는가?

해결법


  1. 1.그것은 바로 여기 그것도 몇 가지 단위 테스트가 있습니다.

    그것은 바로 여기 그것도 몇 가지 단위 테스트가 있습니다.

    그것을 사용하려면 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();
      }
    }
    
  2. from https://stackoverflow.com/questions/46700726/how-to-use-public-method-updateposition-of-react-virtualized by cc-by-sa and MIT license