我想在我的应用程序中使用angular-botstrap-ui。但我不知道如何建立分页。
假设我在表中有100条记录,我想在表格行中获取10条结果。通过使用ng-repeat我得到100行,但我想用分页来限制它们。我怎么能做到这一点?
答案 0 :(得分:5)
我在使用数组函数切片
时解决了这个问题ng-repeat="row in queryResult.rows.slice(((currentPage-1)*10), ((currentPage)*10))"
我写了一篇关于我的巧妙解决方案的博客文章here