angular.js - How to automatically load the next page when angularjs is at the bottom
PHPz
PHPz 2017-05-15 16:50:27
0
3
678

Scenario: Many pages, users browse from top to bottom. When browsing to the end, the next page is automatically loaded.

  1. If you use ng-repeat to simply accumulate data again & compile, this solution is not very good. Every time a page is loaded, all data needs to be compiled and the browsing state is reset.

  2. Directly operate DOM append(node)?

Ask if anyone knows a better solution, thank you ^_^

PHPz
PHPz

学习是最好的投资!

reply all(3)
小葫芦

I found a plug-in with the keyword "Infinite scrolling", which is exactly what I need. The link is as follows:
http://binarymuse.github.io/ngInfiniteScroll/

After looking at it carefully, although this plan is good, it is not flexible enough for me.
Open the source code and understand it slightly after reading it. I did an evaluation and rewritten a directive from it which is more suitable for my current little thing ^_^

After understanding the implementation method, everything is easy to say

淡淡烟草味
$scope.feedList = $scope.feedList.concat([ ... ])
PHPzhong

I think we should write a directive to monitor scroll

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template