即使在成功设置List ref之后(如tree.js示例所示),我似乎无法使用public methods成功触发行高度的重新测量(也显示在tree.js示例中)
https://plnkr.co/edit/V2JhJL8ZGknrbYgRWDhf?p=preview
var listRef;
function setRef (ref) {
listRef = ref
return ref;
}
<List
ref={setRef}
...
/>
listRef.forceUpdateGrid()
答案 0 :(得分:0)
尝试使用listRef.recomputeCellSizesAndPositions()方法,它应该做你想要的。