几个月来我一直在使用自己的解决方案。我开发它是因为我认为它很简单。但是代码变得非常笨拙和混乱。所以我放弃了,但我找不到任何好的开源/社区基础模块。
我喜欢这个。 https://binarymuse.github.io/ngInfiniteScroll/
有没有办法添加“显示更多”按钮?
几个月来我一直在使用自己的解决方案。我开发它是因为我认为它很简单。但是代码变得非常笨拙和混乱。所以我放弃了,但我找不到任何好的开源/社区基础模块。
我喜欢这个。 https://binarymuse.github.io/ngInfiniteScroll/
有没有办法添加“显示更多”按钮?
您正在使用过时的文档,这个是正确的https://sroze.github.io/ngInfiniteScroll/documentation.html而您正在寻找的是infinite-scroll-listen-for-event
<div infinite-scroll-listen-for-event='anEvent'></div>
<button ng-click="broadcastEvent()">Show More</button>
然后在控制器中
$scope.broadcastEvent = function () {
$scope.$broadcast('anEvent')
}