角分页指令不起作用

时间:2015-08-19 10:03:14

标签: javascript angularjs angularjs-directive pagination

我已经创建了一个分页指令,它将与整个站点的网格一起使用。在这个页面上,我有一个搜索,它将返回一组新的数据,我想将这些数据传递给我的指令,然后它有一个新的分页。目前我只有一个链接功能。

指令html

<table-pagination current-page="1" num-per-page="5" max-size="5" pagination-data="membersData" get-filtered-data="getFilteredData(membersData)" returned-paginated-data="returnedPaginatedData(data)"></table-pagination>

directive.js

myAppModule.directive('tablePagination',
        function () {
            return {
                templateUrl: 'Scripts/app/templates/tmplPagination.html',
                restrict: 'E',
                scope: {
                    currentPage: '=',
                    numPerPage: '=',
                    maxSize: '=',
                    paginationData: '=',
                    getFilteredData: '=',
                    filteredMembersData: '&'
                },
                link: function (scope, elem, attrs) {
                    scope.getFilteredData = function () {
                        $scope.$watch('currentPage + numPerPage', function () {
                            var begin = (($scope.currentPage - 1) * $scope.numPerPage), end = begin + $scope.numPerPage;
                            $scope.filteredMembersData = scope.paginationData.slice(begin, end);
                        });
                    }
                },
                controller: [
                '$scope', function ($scope) {

                }]
            }
        });

分页模板

<h4>Total number of records: {{membersData.length}}</h4>
<pagination ng-model="currentPage" total-items="membersData.length" max-size="maxSize"  boundary-links="true"></pagination>

与搜索控制器联系

$scope.returnedPaginatedData = function(data) {
                $scope.filteredMembersData = data;
            }

我想将$ scope.filteredMembersData传递给我的指令,以便重新呈现我的分页。

任何想法如何使这个工作?

1 个答案:

答案 0 :(得分:0)

这是我的解决方案:

指令HTML

 <table-pagination current-page="1" num-per-page="5" max-size="5" source-data="membersData" grid-data="gridData"></table-pagination>

我传递了一些关于网格外观和数据源(整个数据)的设置。我也传入一个数组(gridData)

<强> Directive.js

myAppModule.directive('tablePagination',
        function () {
            return {
                templateUrl: 'Scripts/app/templates/tmplPagination.html',
                restrict: 'E',
                scope: {
                    currentPage: '=',
                    numPerPage: '=',
                    maxSize: '=',
                    sourceData: '=',
                    gridData: '='
                },
                link: function (scope, elem, attrs) { // need this for when pagination is clicked
                        scope.$watch('currentPage + numPerPage', function () {
                            var begin = ((scope.currentPage - 1) * scope.numPerPage), end = begin + scope.numPerPage;
                            scope.gridData = scope.sourceData.slice(begin, end);
                        });

                },
                controller: [
                '$scope', function ($scope) {
                    $scope.$watch('sourceData', function () { // need this for when data changes
                        var begin = (($scope.currentPage - 1) * $scope.numPerPage), end = begin + $scope.numPerPage;
                        $scope.gridData = $scope.sourceData.slice(begin, end);
                    });

                }]
            }
        });

我有一个关于数据何时更改的监视,以及当前页面和数字页面的另一个监视。当我单击分页以转到下一组数据时,它们将充当事件句柄。

<强> template.html

<div>
    <h4>Total number of records: {{sourceData.length}}</h4>
    <pagination ng-model="currentPage" total-items="sourceData.length" max-size="maxSize" boundary-links="true"></pagination> 
</div>

我在这里有一些分页html来配置它。

我可以将其插入我网站上的任何网格中,我只需要一些数据和空数组,以便在网格中显示数据集。