37

假设我收到一个包含 15 个以上对象的对象字面量,并且我需要将它们显示在一个漂亮的布局中(而不是全部排成一行),那么控制何时应该中断/页面应该结束的最有效方法是什么?

现在我在表格行上使用 ng-repeat,结果是一个带有一列的长而薄的表格。

编辑澄清。可以在对象/更多参数中包含对象。这是我的对象:

$scope.zones = [
        {"name": "Zone 1",
         "activity": "1"},
        {"name": "Zone 2",
         "activity": "1"},
        {"name": "Zone 3",
         "activity": "0"},
        {"name": "Zone 4",
         "activity": "0"},
        {"name": "Zone 5",
         "activity": "0"},
        {"name": "Zone 6",
         "activity": "0"},
        {"name": "Zone 7",
         "activity": "1"},
        {"name": "Zone 8",
         "activity": "0"},
        {"name": "Zone 9",
         "activity": "0"},
        {"name": "Zone 10",
         "activity": "0"},
        {"name": "Zone 11",
         "activity": "1"},
        {"name": "Zone 12",
         "activity": "1"},
        {"name": "Zone 13",
         "activity": "0"},
        {"name": "Zone 14",
         "activity": "0"},
        {"name": "Zone 15",
         "activity": "1"},
    ];
4

8 回答 8

71

我会使用表格并在控制器中实现分页来控制显示的数量和移动到下一页的按钮。这个小提琴可能会帮助你。

分页示例

 <table class="table table-striped table-condensed table-hover">
                <thead>
                    <tr>
                        <th class="id">Id&nbsp;<a ng-click="sort_by('id')"><i class="icon-sort"></i></a></th>
                        <th class="name">Name&nbsp;<a ng-click="sort_by('name')"><i class="icon-sort"></i></a></th>
                        <th class="description">Description&nbsp;<a ng-click="sort_by('description')"><i class="icon-sort"></i></a></th>
                        <th class="field3">Field 3&nbsp;<a ng-click="sort_by('field3')"><i class="icon-sort"></i></a></th>
                        <th class="field4">Field 4&nbsp;<a ng-click="sort_by('field4')"><i class="icon-sort"></i></a></th>
                        <th class="field5">Field 5&nbsp;<a ng-click="sort_by('field5')"><i class="icon-sort"></i></a></th>
                    </tr>
                </thead>
                <tfoot>
                    <td colspan="6">
                        <div class="pagination pull-right">
                            <ul>
                                <li ng-class="{disabled: currentPage == 0}">
                                    <a href ng-click="prevPage()">« Prev</a>
                                </li>
                                <li ng-repeat="n in range(pagedItems.length)"
                                    ng-class="{active: n == currentPage}"
                                ng-click="setPage()">
                                    <a href ng-bind="n + 1">1</a>
                                </li>
                                <li ng-class="{disabled: currentPage == pagedItems.length - 1}">
                                    <a href ng-click="nextPage()">Next »</a>
                                </li>
                            </ul>
                        </div>
                    </td>
                </tfoot>
                <tbody>
                    <tr ng-repeat="item in pagedItems[currentPage] | orderBy:sortingOrder:reverse">
                        <td>{{item.id}}</td>
                        <td>{{item.name}}</td>
                        <td>{{item.description}}</td>
                        <td>{{item.field3}}</td>
                        <td>{{item.field4}}</td>
                        <td>{{item.field5}}</td>
                    </tr>
                </tbody>
            </table> 

小提琴示例中的 $scope.range 应该是:

$scope.range = function (size,start, end) {
    var ret = [];        
    console.log(size,start, end);

       if (size < end) {
        end = size;
        if(size<$scope.gap){
             start = 0;
        }else{
             start = size-$scope.gap;
        }

    }
    for (var i = start; i < end; i++) {
        ret.push(i);
    }        
     console.log(ret);        
    return ret;
};
于 2013-10-16T18:24:35.927 回答
16

这是我找到的最简单的分页示例!http://code.ciphertrick.com/2015/06/01/search-sort-and-pagination-ngrepeat-angularjs/

于 2015-12-04T05:45:01.893 回答
13

我使用这个解决方案:

ng-repeat="obj in objects | filter : paginate"自从我使用:过滤行以来,它更简洁了。还使它与 $resource 一起工作:

http://plnkr.co/edit/79yrgwiwvan3bAG5SnKx?p=preview

于 2014-05-09T22:20:08.967 回答
8

这是我的解决方案。@Maxim Shoustin 的解决方案在排序方面存在一些问题。我还将整个事情包装成一个指令。唯一的依赖是 UI.Bootstrap.pagination,它在分页方面做得很好。

这是plunker

这是github源代码。

于 2014-03-17T17:42:53.257 回答
7

在这里,我已经解决了我的 angularJS 分页问题,​​在服务器端 + 视图端进行了更多调整,您可以检查代码,它会更有效。我所要做的就是输入两个值开始编号和结束编号,它将表示返回的 json 数组的索引。

这是角度

var refresh = function () {
    $('.loading').show();
    $http.get('http://put.php?OutputType=JSON&r=all&s=' + $scope.CountStart + '&l=' + $scope.CountEnd).success(function (response) {
        $scope.devices = response;


        $('.loading').hide();
    });
};

如果你仔细看 $scope.CountStart 和 $scope.CountStart 是我通过 api 传递的两个参数

这是下一个按钮的代码

$scope.nextPage = function () {
    $('.loading').css("display", "block");
    $scope.nextPageDisabled();


    if ($scope.currentPage >= 0) {
        $scope.currentPage++;

        $scope.CountStart = $scope.CountStart + $scope.DevicePerPage;
        $scope.CountEnd = $scope.CountEnd + $scope.DevicePerPage;
        refresh();
    }
};

这是上一个按钮的代码

$scope.prevPage = function () {
    $('.loading').css("display", "block");
    $scope.nextPageDisabled();

    if ($scope.currentPage > 0) {
        $scope.currentPage--;

        $scope.CountStart = $scope.CountStart - $scope.DevicePerPage;
        $scope.CountEnd = $scope.CountEnd - $scope.DevicePerPage;

        refresh();

    }
};

如果页码为零,我的上一个按钮将被停用

   $scope.nextPageDisabled = function () {

    console.log($scope.currentPage);

    if ($scope.currentPage === 0) {
        return false;
    } else {
        return true;
    }
};
于 2015-09-23T09:46:54.160 回答
2

带有分页排序过滤的表

在此处输入图像描述

请参阅Angularjs 表格排序过滤器和分页的完整示例

于 2015-11-04T08:33:53.310 回答
2

最好的简单即插即用分页解决方案。

https://ciphertrick.com/2015/06/01/search-sort-and-pagination-ngrepeat-angularjs/#comment-1002

你只需要用自定义指令替换 ng-repeat 。

<tr dir-paginate="user in userList|filter:search |itemsPerPage:7">
<td>{{user.name}}</td></tr>

在页面内你只需要添加

<div align="center">
       <dir-pagination-controls
            max-size="100"
            direction-links="true"
            boundary-links="true" >
       </dir-pagination-controls>
</div>

在你的 index.html 加载

<script src="./js/dirPagination.js"></script>

在您的模块中只需添加依赖项

angular.module('userApp',['angularUtils.directives.dirPagination']);

这就是分页所需要的。

可能对某人有帮助。

于 2017-03-15T06:18:24.630 回答
0

最简单的方法是使用切片。您对切片进行管道传输并提及您希望显示的部分数据的开始索引和结束索引。这是代码:
HTML

<table>
  <thead>
     ...
  </thead>
  <tbody>
     <tr *ngFor="let row of rowData | slice:startIndex:endIndex">
        ...
     </tr>
  </tbody>
</table>
<nav *ngIf="rowData" aria-label="Page navigation example">
    <ul class="pagination">
        <li class="page-item">
            <a class="page-link" (click)="updateIndex(0)" aria-label="Previous">
                <span aria-hidden="true">First</span>
            </a>
        </li>
        <li *ngFor="let i of getArrayFromNumber(rowData.length)" class="page-item">
            <a class="page-link" (click)="updateIndex(i)">{{i+1}}</a></li>

        <li class="page-item">
            <a class="page-link" (click)="updateIndex(pageNumberArray.length-1)" aria-label="Next">
                <span aria-hidden="true">Last</span>
            </a>
        </li>
    </ul>
</nav>


打字稿

...
public rowData = data // data you want to display in table
public paginationRowCount = 100 //number of records in a page
...
getArrayFromNumber(length) {
        if (length % this.paginationRowCount === 0) {
            this.pageNumberArray = Array.from(Array(Math.floor(length / this.paginationRowCount)).keys());
        } else {
            this.pageNumberArray = Array.from(Array(Math.floor(length / this.paginationRowCount) + 1).keys());
        }
        return this.pageNumberArray;
    }

    updateIndex(pageIndex) {
        this.startIndex = pageIndex * this.paginationRowCount;
        if (this.rowData.length > this.startIndex + this.paginationRowCount) {
            this.endIndex = this.startIndex + this.paginationRowCount;
        } else {
            this.endIndex = this.rowData.length;
        }
    }

教程参考: https ://www.youtube.com/watch?v= Q0jPfb9iyE0

于 2020-05-31T17:13:18.643 回答