我需要对这个重复序列进行分页,这样一个页面上只有5个项目,并且必须加载到同一页面上,因为它从json文件中获取数据,然后将其发送到ng-repeat,因为数据的数量大约是50-60所以我需要在不同的页面上,所显示的数据将包括图像,名称,类型,关于书籍的描述
<div class="row" ng-repeat="book in books">
<div class="col-md-4">
<img ng-src="{{book.ImageUrl}}" class="img-responsive img-thumbnail" />
</div>
<div class="col-md-8">
<h3>{{book.Name}}</h3>
<h5>{{book.Type}}</h5>
<p>{{book.Description}}</p>
<button class="btn btn-default">Read More</button> Social Icons will go here
<br />
<br />
</div>
</div>
答案 0 :(得分:0)
我使用此示例的 dirPagination.js :
https://github.com/michaelbromley/angularUtils/tree/master/src/directives/pagination
答案 1 :(得分:-1)