Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为我的应用程序使用 Angular2。我知道使用无限滚动的语法是:
<div (scroll) = "scrollHandler()"> </div>
但是有什么方法可以在 Angular2 中指定诸如“无限滚动距离”之类的东西?
您可以在 html 中使用 (window:scroll)="moving($event)"
<div (window:scroll)= "scrollHandler()"></div>
尝试在外部 div 上使用它