我正在尝试使用这样<ScrollSync>
的嵌入式<AutoSizer>
:
<ScrollSync>
{({ clientHeight, clientWidth, onScroll, scrollHeight, scrollLeft, scrollTop, scrollWidth }) => {
<AutoSizer onResize={this.onResize}>{
({ width, height }) => (
<Grid {...alltheprops} onScroll={onScroll}/>
)
}</AutoSizer>
}
</ScrollSync>
这当然大大简化了,但会让我的观点得到理解(我希望)。所以网格的onScroll连接到scrollsync。我的问题是,每当自动调整器因为我使我的窗口更宽而触发时,scrollSync 将不会被通知新的scrollWidth。知道如何解决这个问题吗?