我在我的角度应用程序中使用 ngx-infinite-scroll 我的问题是(scrolledUP)不起作用但(滚动)工作正常我不知道为什么这是我的代码
html页面:
[infiniteScrollDistance]="2"
[infiniteScrollThrottle]="50"
[infiniteScrollUpDistance]="1.5"
(scrolled)="getNextArticle()"
(scrolledUp)="scrollUp()"
在我的 ts 组件中,我已经导入了 infinitscroll 模块,我的代码是:
scrollUp() {
console.log("scrolledUp");
}
那么为什么scrolledup 不起作用?