web-dev-qa-db-ja.com

コントローラでAngularJSフィルタをチェーンする方法

ビューにフィルターがほとんどない

_  <tr ng-repeat="x in list | filter:search| offset:currentPage*pageSize| limitTo:pageSize ">
_

私のプロジェクトでは、良い結果を達成するために、コントローラーでこのフィルタリングを非表示にする必要があります

基本的な構文$filter('filter')('x','x')は知っていますが、コントローラーで一連のフィルターを作成する方法がわからないため、テンプレートの例のようにすべてが機能します。

私はいくつかの解決策を見つけましたが、現在は1つのフィルターで解決できますが、多くのソリューションで動作するはずです;)

_       $scope.data = data; //my geojson from factory//

       $scope.geojson = {}; //i have to make empty object to extend it scope later with data, it is solution i found for leaflet //

       $scope.geojson.data = [];

       $scope.FilteredGeojson = function() {

       var result = $scope.data;

       if ($scope.data) {
          result = $filter('limitTo')(result,10);
          $scope.geojson.data = result;
          console.log('success');
       }
           return result;

       };
_

そして、ng-repeatでこの関数を使用するとうまくいきますが、いくつかのフィルターでチェックする必要があります。

23
IOR88

最初のフィルターから返されたものを再フィルターすることができます。などなど。

var filtered;
filtered = $filter('filter')($scope.list, {name: $scope.filterParams.nameSearch});
filtered = $filter('orderBy')(filtered, $scope.filterParams.order);

以下のplunkrは上記を示しています。

http://plnkr.co/edit/Ej1O36aOrHoNdTMxH2vH?p=preview

25
Angad

前の結果にフィルターを明示的に適用することに加えて、複数のフィルターを連結するオブジェクトを作成することもできます。

コントローラ

angular.module('Demo', []);

angular.module('Demo')
    .controller('DemoCtrl', function($scope, $filter) {

        $scope.order = 'calories';
        $scope.filteredFruits = $scope.fruits = [{ name: 'Apple', calories: 80 }, { name: 'Grapes', calories: 100 }, { name: 'Lemon', calories: 25 }, { name: 'Lime', calories: 20 }, { name: 'Peach', calories: 85 }, { name: 'Orange',    calories: 75 }, { name: 'Strawberry', calories: 65 }];

        $scope.filterFruits = function(){
            var chain = new filterChain($scope.fruits);
            $scope.filteredFruits = chain
                .applyFilter('filter', [{ name: $scope.filter }])
                .applyFilter('orderBy', [ $scope.order ])
                .value;
        };

        function filterChain(value) {
            this.value = value;
        }

        filterChain.prototype.applyFilter = function(filterName, args) {
            args.unshift(this.value);
            this.value = $filter(filterName).apply(undefined, args)
            return this;
        };
    });

見る

<!doctype html>
<html ng-app="Demo">
  <head>
    <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.16/angular.js"></script>
    <script src="script.js"></script>
    <link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
  </head>
  <body>

<div ng-controller="DemoCtrl">
  <input type="text" ng-model="filter" ng-change="filterFruits()" placeholder="Filter Fruits" />
  <select ng-model="order">
    <option value="name">name</option>
    <option value="calories">calories</option>
  </select>
  <div ng-repeat="fruit in filteredFruits">
    <strong>Name:</strong> {{fruit.name}}
    <strong>Calories:</strong> {{fruit.calories}}
  </div>
</div>
  </body>
</html>
10

これは、FP lodashやRamdaのようなライブラリ。一般的なデータが各フィルターの最後の引数として適用されていることを確認してください。この場合、列)

$scope.columnDefs = _.compose(
    $filter('filter3'),
    $filter('filter2'),
    $filter('filter1')
)($scope.columns)

または追加の引数付き

$scope.columnDefs = _.compose(
    $filter('filter3').bind(null, optionalArg1, optionalArg2),
    $filter('filter2').bind(null, optionalArg1),
    $filter('filter1')
)($scope.columns)
4
fryyyyy