NGX 无限滚动不起作用
NGX infinite scroll won't work
我想实现无限滚动,我使用的是ngx-infinite-scroll,但是没有触发onScroll()函数。我已经尝试了我在其他问题上看到的所有内容,但没有成功。
我想将 ngx-infinite-scroll 与 angular material table.
一起使用
<div
infiniteScroll
[infiniteScrollDistance]="2"
[infiniteScrollThrottle]="50"
(scrolled)="onScroll()">
</div>
onScroll() {
console.log("Scroll...");
}
更新
这是在不使用 ngx-infinite-scroll 的情况下回答问题
使用
@HostListener('scroll', ['$event'])
scrolled() {
}
或window:scroll
@HostListener('window:scroll', ['$event'])
scrolled() {
我想实现无限滚动,我使用的是ngx-infinite-scroll,但是没有触发onScroll()函数。我已经尝试了我在其他问题上看到的所有内容,但没有成功。 我想将 ngx-infinite-scroll 与 angular material table.
一起使用 <div
infiniteScroll
[infiniteScrollDistance]="2"
[infiniteScrollThrottle]="50"
(scrolled)="onScroll()">
</div>
onScroll() {
console.log("Scroll...");
}
更新 这是在不使用 ngx-infinite-scroll 的情况下回答问题 使用
@HostListener('scroll', ['$event'])
scrolled() {
}
或window:scroll
@HostListener('window:scroll', ['$event'])
scrolled() {