Angular"显示更多"无限滚动按钮

时间:2015-10-19 11:25:02

标签: angularjs infinite-scroll nginfinitescroll

我几个月来一直在使用自己的解决方案。我开发它是因为我认为它很简单。但是代码变得非常笨拙和混乱。所以我放弃了,但我找不到任何好的开源/社区基础模块。

我喜欢这个。 https://binarymuse.github.io/ngInfiniteScroll/

有没有办法添加"显示更多"按钮呢?

1 个答案:

答案 0 :(得分:1)

您使用的是过时的文档,这是正确的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')
}