web-dev-qa-db-ja.com

ng-repeatを使ったリストのページ付け

リストにページを追加しようとしています。私はAngularJSのチュートリアル、スマートフォンに関するチュートリアルに従ったので、特定の数のオブジェクトだけを表示しようとしています。これが私のhtmlファイルです:

  <div class='container-fluid'>
    <div class='row-fluid'>
        <div class='span2'>
            Search: <input ng-model='searchBar'>
            Sort by: 
            <select ng-model='orderProp'>
                <option value='name'>Alphabetical</option>
                <option value='age'>Newest</option>
            </select>
            You selected the phones to be ordered by: {{orderProp}}
        </div>

        <div class='span10'>
          <select ng-model='limit'>
            <option value='5'>Show 5 per page</option>
            <option value='10'>Show 10 per page</option>
            <option value='15'>Show 15 per page</option>
            <option value='20'>Show 20 per page</option>
          </select>
          <ul class='phones'>
            <li class='thumbnail' ng-repeat='phone in phones | filter:searchBar | orderBy:orderProp | limitTo:limit'>
                <a href='#/phones/{{phone.id}}' class='thumb'><img ng-src='{{phone.imageUrl}}'></a>
                <a href='#/phones/{{phone.id}}'>{{phone.name}}</a>
                <p>{{phone.snippet}}</p>
            </li>
          </ul>
        </div>
    </div>
  </div>

表示される項目の数を制限するために、いくつかの値を持つselectタグを追加しました。今欲しいのは、次の5、10などを表示するためのページ付けを追加することです。

私はこれで動作するコントローラを持っています:

function PhoneListCtrl($scope, Phone){
    $scope.phones = Phone.query();
    $scope.orderProp = 'age';
    $scope.limit = 5;
}

また、私はJSONファイルからデータを取得するためのモジュールがあります。

angular.module('phonecatServices', ['ngResource']).
    factory('Phone', function($resource){
        return $resource('phones/:phoneId.json', {}, {
            query: {method: 'GET', params:{phoneId:'phones'}, isArray:true}
        });
    });
130
Tomarto

あなたがあまりにも多くのデータを持っていない場合は、ブラウザにすべてのデータを保存し、特定の時点で表示されているものをフィルタリングするだけで確実にページネーションを行うことができます。

これが簡単なページ付けの例です: http://jsfiddle.net/2ZzZB/56/

その例は、Angular.js githubウィキのフィドルのリストに載っていましたが、役に立つはずです: https://github.com/angular/angular.js/wiki/JsFiddle-Examples

編集: http://jsfiddle.net/2ZzZB/16/ to http://jsfiddle.net/2ZzZB/56/ ( "1/4.5は表示されません) "45の結果がある場合)

213
Andrew Joslin

Twitterブートストラップを使ったビルドコードを使用して、各列でページ区切り+検索+順序で表示するJSFiddleを作成したところです。 http:// jsfiddle) .net/SAWsA/11 /

39
Spir

私はメモリ内のページ付けを非常に簡単にするモジュールを作りました。

ng-repeatdir-paginateに置き換えて、ページごとの項目をパイプフィルタとして指定してから、単一のディレクティブ<dir-pagination-controls>の形式でコントロールをドロップするだけで、ページ番号を付けられます

Tomartoから依頼されたオリジナルの例をとると、これは次のようになります。

<ul class='phones'>
    <li class='thumbnail' dir-paginate='phone in phones | filter:searchBar | orderBy:orderProp | limitTo:limit | itemsPerPage: limit'>
            <a href='#/phones/{{phone.id}}' class='thumb'><img ng-src='{{phone.imageUrl}}'></a>
            <a href='#/phones/{{phone.id}}'>{{phone.name}}</a>
            <p>{{phone.snippet}}</p>
    </li>
</ul>

<dir-pagination-controls></dir-pagination-controls>

コントローラに特別な改ページコードは必要ありません。それはすべてモジュールによって内部的に処理されます。

デモ: http://plnkr.co/edit/Wtkv71LIqUR4OhzhgpqL?p=preview

ソース: GitHubのdirPagination

14
Michael Bromley

私はこのスレッドが古くなっているのを知っています、しかし私は物事を少し更新し続けるためにそれに答えています。

Angular 1.4以降では、直接使用できます limitTo filter。これはlimitパラメータを受け入れる以外にbeginパラメータも受け入れます。

使用法:{{ limitTo_expression | limitTo : limit : begin}}

そのため、ページネーションなどの目的でサードパーティのライブラリを使用する必要はありません。同じことを説明するために フィドル を作成しました。

5
Bharat Gupta

このディレクティブをチェックしてください。 https://github.com/samu/angular-table

それはソートとページネーションを非常に自動化し、あなたが望むあなたのテーブル/リストをカスタマイズするのに十分な自由をあなたに与えます。

3
Samuel Müller

これは、ページ付け+ AngularJSによるフィルタリングがあるデモコードです。

https://codepen.io/lamjaguar/pen/yOrVym

JS:

var app=angular.module('myApp', []);

// alternate - https://github.com/michaelbromley/angularUtils/tree/master/src/directives/pagination
// alternate - http://fdietz.github.io/recipes-with-angular-js/common-user-interface-patterns/paginating-through-client-side-data.html

app.controller('MyCtrl', ['$scope', '$filter', function ($scope, $filter) {
    $scope.currentPage = 0;
    $scope.pageSize = 10;
    $scope.data = [];
    $scope.q = '';

    $scope.getData = function () {
      // needed for the pagination calc
      // https://docs.angularjs.org/api/ng/filter/filter
      return $filter('filter')($scope.data, $scope.q)
     /* 
       // manual filter
       // if u used this, remove the filter from html, remove above line and replace data with getData()

        var arr = [];
        if($scope.q == '') {
            arr = $scope.data;
        } else {
            for(var ea in $scope.data) {
                if($scope.data[ea].indexOf($scope.q) > -1) {
                    arr.Push( $scope.data[ea] );
                }
            }
        }
        return arr;
       */
    }

    $scope.numberOfPages=function(){
        return Math.ceil($scope.getData().length/$scope.pageSize);                
    }

    for (var i=0; i<65; i++) {
        $scope.data.Push("Item "+i);
    }
  // A watch to bring us back to the 
  // first pagination after each 
  // filtering
$scope.$watch('q', function(newValue,oldValue){             if(oldValue!=newValue){
      $scope.currentPage = 0;
  }
},true);
}]);

//We already have a limitTo filter built-in to angular,
//let's make a startFrom filter
app.filter('startFrom', function() {
    return function(input, start) {
        start = +start; //parse to int
        return input.slice(start);
    }
});

HTML:

<div ng-app="myApp" ng-controller="MyCtrl">
  <input ng-model="q" id="search" class="form-control" placeholder="Filter text">
  <select ng-model="pageSize" id="pageSize" class="form-control">
        <option value="5">5</option>
        <option value="10">10</option>
        <option value="15">15</option>
        <option value="20">20</option>
     </select>
  <ul>
    <li ng-repeat="item in data | filter:q | startFrom:currentPage*pageSize | limitTo:pageSize">
      {{item}}
    </li>
  </ul>
  <button ng-disabled="currentPage == 0" ng-click="currentPage=currentPage-1">
        Previous
    </button> {{currentPage+1}}/{{numberOfPages()}}
  <button ng-disabled="currentPage >= getData().length/pageSize - 1" ng-click="currentPage=currentPage+1">
        Next
    </button>
</div>
2