gpt4 book ai didi

Angular 6滚动事件

转载 作者:行者123 更新时间:2023-12-04 17:44:44 26 4
gpt4 key购买 nike

我使用 Angular 的 cdkScrollable 在我的组件上实现了滚动事件。

我的代码如下所示

export class HomeComponent {
public hide = true;

constructor(public scrollDispatcher: ScrollDispatcher) {
this.scrollDispatcher.scrolled().subscribe((cdk: CdkScrollable) => {
offset = cdk.getElementRef().nativeElement.scrollTop || 0;

if (offset > 50) {
this.hide = false;
} else {
this.hide = true;
}
});
}
}

而我的home.component.html有以下代码

<p>{{hide}}</p>

问题是 hide 的值即使滚动超过 64 也不会改变,但在 console.log 中它会改变。

我做错了什么?

最佳答案

ScrollDispatcher 未在 Angular 更新周期中运行。您需要在 NgZone 中运行更改

this.zone.run(_ => {
this.hide= false;
});

关于Angular 6滚动事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52668467/

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