gpt4 book ai didi

html - fromEvent 返回属性在类型 'Event' 上不存在

转载 作者:行者123 更新时间:2023-11-28 13:53:18 25 4
gpt4 key购买 nike

我正在尝试根据光标的位置更改元素的位置。因此我有以下代码:

this.ngZone.runOutsideAngular(() => {
fromEvent(window, 'mousemove').pipe(
filter(() => this.hoveredCart !== -1),
).subscribe(({clientY}) => this.floatingElements.toArray()[this.hoveredCart].nativeElement
.style.top = clientY);
});

它以某种方式返回错误:

Property 'clientY' does not exist on type 'Event'

最佳答案

fromEvent 使用通用类型,因此您可以告诉 TypeScript 它应该期望什么类型:

fromEvent<MouseEvent>(window, 'mousemove').pipe(
filter(() => this.hoveredCart !== -1),
).subscribe(({clientY}) => this.floatingElements.toArray()[this.hoveredCart].nativeElement
.style.top = clientY);

关于html - fromEvent 返回属性在类型 'Event' 上不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59296041/

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