gpt4 book ai didi

javascript - getBoundingClientRect 不存在

转载 作者:搜寻专家 更新时间:2023-10-30 21:27:51 31 4
gpt4 key购买 nike

我构建了一个组件,该组件将根据其尺寸和在窗口中的位置确定其打开方向。我在 react-dom 节点上使用了 getBoundingClientRect() 函数。现在我已经更新了一些项目包,包括 react 和 react-dom 到 16.3.2。现在我得到一个编译错误:

Property 'getBoundingClientRect' does not exist on type 'Element | Text'

下面是一段使用这个函数的代码:

const node = ReactDOM.findDOMNode(this.containerElement);

if (!node) {
return;
}

let vertical: Vertical_Direction;
if (verticalDirection === Vertical_Direction.DOWN_UP) {
const windowHeight = window.innerHeight;
const height: number = Math.min(containerHeight, node.getBoundingClientRect().height);

任何帮助或建议实现此功能将不胜感激。

Edit2:这个问题的原因是将@types/react-dom 更新到 16.0.5 版本。

最佳答案

getBoundingClientRect 函数仅存在于 Element 类中,而不存在于 Text 中,因此您需要转换元素的类型像这样:

const node = ReactDOM.findDOMNode(this.containerElement) as Element

另一种更安全的方法是在运行时检查实例类型,typescript 会在检查后智能地转换类型。但正如您所见,对于这种情况,它可能有点不必要的冗长:

const node = ReactDOM.findDOMNode(this.containerElement)

// ...

if (!(node instanceof Element)) return

// type of node should be Element

无论哪种方式,随心所欲。

关于javascript - getBoundingClientRect 不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50073389/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com