我正在访问reason-react
DOM 引用以确定客户端高度。
不幸的是clientHeight
,它似乎不是ref
API 的一部分。所以这失败了:
ref
-> React.Ref.current
-> Js.Nullable.toOption
-> Belt.Option.map(this => {
React.Ref.clientHeight(this);
});
The value clientHeight can't be found in React.Ref
.
有没有办法从参考中提取组件的高度?
ref 是从 div 获取的。