133

リストにページを追加しようとしています。スマートフォンに関するチュートリアルである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}
        });
    });
4

6 に答える 6

216

データが多すぎない場合は、すべてのデータをブラウザに保存し、特定の時間に表示されるものをフィルタリングするだけで、間違いなくページ付けを行うことができます。

簡単なページ付けの例を次に示します。http://jsfiddle.net/2ZzZB/56/

その例は、angular.js github wikiのフィドルのリストにありました。これは役立つはずです:https ://github.com/angular/angular.js/wiki/JsFiddle-Examples

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

于 2012-07-20T15:07:58.340 に答える
39

Build with Twitter Bootstrapコード を使用して、各列にページ付け+検索+順序を表示するJSFiddleを作成しました :http: //jsfiddle.net/SAWsA/11/

于 2012-10-01T09:07:05.860 に答える
15

メモリ内のページングを非常に簡単にするモジュールを作成しました。

に置き換えるだけでページ付けが可能になり、ページごとのアイテムをパイプフィルターとして指定ng-repeatdir-paginate、コントロールを1つのディレクティブの形式で好きな場所にドロップできます。<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

于 2014-07-10T15:30:13.473 に答える
5

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

Angular 1.4以降では、 limitToフィルターを直接使用できます。このフィルターは、パラメーターを受け入れるだけでなく、limitパラメーターも受け入れbeginます。

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

したがって、ページネーションのようなものを実現するために、サードパーティのライブラリを使用する必要がない場合があります。同じことを説明するためにフィドルを作成しました。

于 2017-02-02T15:09:39.223 に答える
3

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

並べ替えとページ付けを大幅に自動化し、テーブル/リストを自由にカスタマイズできます。

于 2013-06-22T10:28:26.690 に答える
2

これは、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>
于 2016-05-13T11:04:42.700 に答える