131

我正在运行一个简单的ng-repeatJSON 文件上运行一个简单的程序,并希望获取类别名称。大约有 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,只是为了澄清

4

16 回答 16

142

您可以使用来自 AngularUI 的唯一过滤器(此处提供源代码:AngularUI 唯一过滤器)并直接在 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>
于 2013-04-11T04:51:21.810 回答
38

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

app.filter('unique', function() {
    return function (arr, field) {
        return _.uniq(arr, function(a) { return a[field]; });
    };
});
于 2014-03-19T20:27:25.967 回答
30

您可以在angular.filter模块 中使用 'unique'(aliases: 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
bar 20
baz 30

于 2014-06-30T13:14:24.853 回答
16

这段代码对我有用。

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");
于 2014-09-09T20:08:56.057 回答
6

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

<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;
}, []);
于 2013-04-10T01:42:58.393 回答
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>
于 2015-09-15T22:48:08.307 回答
4

我决定扩展@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>
于 2016-08-25T22:15:47.343 回答
2

更新

我推荐使用 Set 但很抱歉这不适用于 ng-repeat,也不适用于 Map,因为 ng-repeat 仅适用于数组。所以忽略这个答案。无论如何,如果您需要以一种方式过滤掉重复项,就像其他人所说的那样angular filters,这里是它到入门部分的链接


旧答案

Yo 可以使用ECMAScript 2015 (ES6) 标准 Set Data structure,而不是 Array 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
于 2015-09-22T21:12:18.500 回答
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>
于 2016-09-14T15:52:42.183 回答
2

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

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(); 
    }

  };
}
于 2015-10-20T15:33:39.993 回答
2

似乎每个人都在将自己版本的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]];
      });
    };
  });
于 2016-02-17T17:38:47.193 回答
2

上述过滤器都没有解决我的问题,所以我不得不从官方 github doc 复制过滤器。然后按照上述答案中的说明使用它

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

返回函数(项目,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;
  };

});
于 2017-10-16T06:13:57.637 回答
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'">
于 2016-06-23T15:24:30.567 回答
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>
于 2015-05-28T19:57:46.660 回答
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);
    }
});
于 2016-07-10T13:05:02.987 回答
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");

于 2015-09-30T09:08:33.283 回答