ElemeFE / vue-infinite-scroll

An infinite scroll directive for vue.js.
2.85k stars 416 forks source link

Stop calling api when I scroll down #149

Open alexsantm2019 opened 3 years ago

alexsantm2019 commented 3 years ago

Hello everybody. I have a problem. The component works very well, but when displaying all the records, and if I scroll down, the component continues to call the api infinitely. How can I make it so that once I get all the records, and scroll down, stop calling the api?

Thanks a lot

mittalyashu commented 2 years ago

Hi @alexsantm2019,

You can add some kind of conditional check inside your method.

For instance, if you're fetching records based on pagination, you can check if there more records to pull or not.