如何使ng-repeat过滤掉重复的结果

时间:2013-04-10 00:02:26

标签: angularjs angularjs-ng-repeat

我在JSON文件上运行一个简单的ng-repeat,并希望获取类别名称。大约有100个对象,每个对象属于一个类别 - 但只有大约6个类别。

我目前的代码是:

<select ng-model="orderProp" >
  <option ng-repeat="place in places" value="{{place.category}}">{{place.category}}</option>
</select>

输出是100种不同的选项,大多数是重复的。如何使用Angular检查{{place.category}}是否已经存在,如果已经存在,则不创建选项?

编辑:在我的javascript $scope.places = JSON data中,只是为了澄清

16 个答案:

答案 0 :(得分:139)

您可以使用AngularUI中的唯一过滤器(此处提供源代码:AngularUI unique filter)并直接在ng-options(或ng-repeat)中使用。

<select ng-model="orderProp" ng-options="place.category for place in places | unique:'category'">
    <option value="0">Default</option>
    // unique options from the categories
</select>

答案 1 :(得分:37)

或者您可以使用lodash编写自己的过滤器。

app.filter('unique', function() {
    return function (arr, field) {
        return _.uniq(arr, function(a) { return a[field]; });
    };
});

答案 2 :(得分:30)

您可以在angular.filter模块中使用&quot; unique&#39;(别名:uniq)过滤器

用法:colection | uniq: 'property'
您还可以按嵌套属性进行过滤:colection | uniq: 'property.nested_property'

你可以做什么,是这样的......

function MainController ($scope) {
 $scope.orders = [
  { id:1, customer: { name: 'foo', id: 10 } },
  { id:2, customer: { name: 'bar', id: 20 } },
  { id:3, customer: { name: 'foo', id: 10 } },
  { id:4, customer: { name: 'bar', id: 20 } },
  { id:5, customer: { name: 'baz', id: 30 } },
 ];
}

HTML:我们根据客户ID进行过滤,即删除重复的客户

<th>Customer list: </th>
<tr ng-repeat="order in orders | unique: 'customer.id'" >
   <td> {{ order.customer.name }} , {{ order.customer.id }} </td>
</tr>

<强>结果
客户清单:
foo 10
酒吧20
巴兹30

答案 3 :(得分:15)

此代码适用于我。

app.filter('unique', function() {

  return function (arr, field) {
    var o = {}, i, l = arr.length, r = [];
    for(i=0; i<l;i+=1) {
      o[arr[i][field]] = arr[i];
    }
    for(i in o) {
      r.push(o[i]);
    }
    return r;
  };
})

然后

var colors=$filter('unique')(items,"color");

答案 4 :(得分:5)

如果你想列出类别,我认为你应该明确说明你的 意图中的意图。

<select ng-model="orderProp" >
  <option ng-repeat="category in categories"
          value="{{category}}">
    {{category}}
  </option>
</select>

在控制器中:

$scope.categories = $scope.places.reduce(function(sum, place) {
  if (sum.indexOf( place.category ) < 0) sum.push( place.category );
  return sum;
}, []);

答案 5 :(得分:4)

这是一个简单而通用的例子。

过滤器:

sampleApp.filter('unique', function() {

  // Take in the collection and which field
  //   should be unique
  // We assume an array of objects here
  // NOTE: We are skipping any object which
  //   contains a duplicated value for that
  //   particular key.  Make sure this is what
  //   you want!
  return function (arr, targetField) {

    var values = [],
        i, 
        unique,
        l = arr.length, 
        results = [],
        obj;

    // Iterate over all objects in the array
    // and collect all unique values
    for( i = 0; i < arr.length; i++ ) {

      obj = arr[i];

      // check for uniqueness
      unique = true;
      for( v = 0; v < values.length; v++ ){
        if( obj[targetField] == values[v] ){
          unique = false;
        }
      }

      // If this is indeed unique, add its
      //   value to our values and push
      //   it onto the returned array
      if( unique ){
        values.push( obj[targetField] );
        results.push( obj );
      }

    }
    return results;
  };
})

标记:

<div ng-repeat = "item in items | unique:'name'">
  {{ item.name }}
</div>
<script src="your/filters.js"></script>

答案 6 :(得分:3)

我决定延长@thethakuri的答案,允许独特成员获得任何深度。这是代码。这适用于那些不想仅为此功能包含整个AngularUI模块的用户。如果您已经在使用AngularUI,请忽略此答案:

app.filter('unique', function() {
    return function(collection, primaryKey) { //no need for secondary key
      var output = [], 
          keys = [];
          var splitKeys = primaryKey.split('.'); //split by period


      angular.forEach(collection, function(item) {
            var key = {};
            angular.copy(item, key);
            for(var i=0; i<splitKeys.length; i++){
                key = key[splitKeys[i]];    //the beauty of loosely typed js :)
            }

            if(keys.indexOf(key) === -1) {
              keys.push(key);
              output.push(item);
            }
      });

      return output;
    };
});

实施例

<div ng-repeat="item in items | unique : 'subitem.subitem.subitem.value'"></div>

答案 7 :(得分:2)

更新

我推荐使用Set但是抱歉这不适用于ng-repeat,也不适用于map,因为ng-repeat只适用于数组。所以忽略这个答案。无论如何,如果您需要按照其他方式使用angular filters过滤出重复项,则此处为link for it to the getting started section

旧答案

Yo可以使用the ECMAScript 2015 (ES6) standard Set Data structure而不是数组数据结构,这样您就可以在添加到Set时过滤重复的值。 (请记住,套装不允许重复值)。真的很容易使用:

var mySet = new Set();

mySet.add(1);
mySet.add(5);
mySet.add("some text");
var o = {a: 1, b: 2};
mySet.add(o);

mySet.has(1); // true
mySet.has(3); // false, 3 has not been added to the set
mySet.has(5);              // true
mySet.has(Math.sqrt(25));  // true
mySet.has("Some Text".toLowerCase()); // true
mySet.has(o); // true

mySet.size; // 4

mySet.delete(5); // removes 5 from the set
mySet.has(5);    // false, 5 has been removed

mySet.size; // 3, we just removed one value

答案 8 :(得分:2)

这是一种仅限模板的方式(但它没有维持订单)。另外,结果也会被订购,这在大多数情况下都很有用:

<select ng-model="orderProp" >
   <option ng-repeat="place in places | orderBy:'category' as sortedPlaces" data-ng-if="sortedPlaces[$index-1].category != place.category" value="{{place.category}}">
      {{place.category}}
   </option>
</select>

答案 9 :(得分:1)

我有一个字符串数组,而不是对象,我使用了这种方法:

ng-repeat="name in names | unique"

使用此过滤器:

angular.module('app').filter('unique', unique);
function unique(){
return function(arry){
        Array.prototype.getUnique = function(){
        var u = {}, a = [];
        for(var i = 0, l = this.length; i < l; ++i){
           if(u.hasOwnProperty(this[i])) {
              continue;
           }
           a.push(this[i]);
           u[this[i]] = 1;
        }
        return a;
    };
    if(arry === undefined || arry.length === 0){
          return '';
    }
    else {
         return arry.getUnique(); 
    }

  };
}

答案 10 :(得分:1)

似乎每个人都将自己版本的unique过滤器扔进了戒指,所以我也会这样做。批评是非常受欢迎的。

angular.module('myFilters', [])
  .filter('unique', function () {
    return function (items, attr) {
      var seen = {};
      return items.filter(function (item) {
        return (angular.isUndefined(attr) || !item.hasOwnProperty(attr))
          ? true
          : seen[item[attr]] = !seen[item[attr]];
      });
    };
  });

答案 11 :(得分:1)

如果您想根据嵌套密钥获取唯一数据:

app.filter('unique', function() {
        return function(collection, primaryKey, secondaryKey) { //optional secondary key
          var output = [], 
              keys = [];

          angular.forEach(collection, function(item) {
                var key;
                secondaryKey === undefined ? key = item[primaryKey] : key = item[primaryKey][secondaryKey];

                if(keys.indexOf(key) === -1) {
                  keys.push(key);
                  output.push(item);
                }
          });

          return output;
        };
    });

这样称呼:

<div ng-repeat="notify in notifications | unique: 'firstlevel':'secondlevel'">

答案 12 :(得分:1)

以上所有过滤器均无法解决我的问题,因此我必须从官方github doc.复制过滤器,然后按照上述答案中的说明使用它

angular.module('yourAppNameHere').filter('unique', function () {

返回函数(items,filterOn){

if (filterOn === false) {
  return items;
}

if ((filterOn || angular.isUndefined(filterOn)) && angular.isArray(items)) {
  var hashCheck = {}, newItems = [];

  var extractValueToCompare = function (item) {
    if (angular.isObject(item) && angular.isString(filterOn)) {
      return item[filterOn];
    } else {
      return item;
    }
  };

  angular.forEach(items, function (item) {
    var valueToCheck, isDuplicate = false;

    for (var i = 0; i < newItems.length; i++) {
      if (angular.equals(extractValueToCompare(newItems[i]), extractValueToCompare(item))) {
        isDuplicate = true;
        break;
      }
    }
    if (!isDuplicate) {
      newItems.push(item);
    }

  });
  items = newItems;
}
return items;
  };

});

答案 13 :(得分:0)

添加此过滤器:

app.filter('unique', function () {
return function ( collection, keyname) {
var output = [],
    keys = []
    found = [];

if (!keyname) {

    angular.forEach(collection, function (row) {
        var is_found = false;
        angular.forEach(found, function (foundRow) {

            if (foundRow == row) {
                is_found = true;                            
            }
        });

        if (is_found) { return; }
        found.push(row);
        output.push(row);

    });
}
else {

    angular.forEach(collection, function (row) {
        var item = row[keyname];
        if (item === null || item === undefined) return;
        if (keys.indexOf(item) === -1) {
            keys.push(item);
            output.push(row);
        }
    });
}

return output;
};
});

更新您的标记:

<select ng-model="orderProp" >
   <option ng-repeat="place in places | unique" value="{{place.category}}">{{place.category}}</option>
</select>

答案 14 :(得分:0)

这可能有点矫枉过正,但它对我有用。

Array.prototype.contains = function (item, prop) {
var arr = this.valueOf();
if (prop == undefined || prop == null) {
    for (var i = 0; i < arr.length; i++) {
        if (arr[i] == item) {
            return true;
        }
    }
}
else {
    for (var i = 0; i < arr.length; i++) {
        if (arr[i][prop] == item) return true;
    }
}
return false;
}

Array.prototype.distinct = function (prop) {
   var arr = this.valueOf();
   var ret = [];
   for (var i = 0; i < arr.length; i++) {
       if (!ret.contains(arr[i][prop], prop)) {
           ret.push(arr[i]);
       }
   }
   arr = [];
   arr = ret;
   return arr;
}

distinct函数取决于上面定义的contains函数。它可以被称为array.distinct(prop);,其中prop是您想要区分的属性。

所以你可以说$scope.places.distinct("category");

答案 15 :(得分:0)

创建自己的数组。

<select name="cmpPro" ng-model="test3.Product" ng-options="q for q in productArray track by q">
    <option value="" >Plans</option>
</select>

 productArray =[];
angular.forEach($scope.leadDetail, function(value,key){
    var index = $scope.productArray.indexOf(value.Product);
    if(index === -1)
    {
        $scope.productArray.push(value.Product);
    }
});