ionic 3 infinite scroll is not working until content scroll to top and then bottom
问题 I am trying to load some more data in ionic 3 project. The infinite scroll is working only for the first time. And then it is stop working until the page scroll to top and then bottom. Here is my code HTML <ion-content> <ion-scroll style="width:100%;height:100vh" scrollY="true"> <ion-list *ngIf="posts.length>0"> <button *ngFor="let post of posts" ion-item> <ion-thumbnail item-start> <img [src]="getPostImage(post)"> </ion-thumbnail> <h2>{{ post.title.rendered }}</h2> </button> </ion-list> <ion