javascript – AngularJS Ng-repeat和Duplicates

前端之家收集整理的这篇文章主要介绍了javascript – AngularJS Ng-repeat和Duplicates前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在SO中没有看到任何问题,讨论在ng-repeat中不允许重复.我的问题略有不同.在我的情况下,我很困惑,因为即使数组中有重复的对象,我也没有收到错误

这是我的HTML代码

<table>
      <tr ng-repeat="item in items">
        <td> {{ item.email}}</td>           
      </tr>
</table>

这是填充数组的代码

app.controller('MainCtrl',function($scope) {


$scope.items=[];

  $scope.items.push({
           "id":"1","email":"a@b.com"});
  $scope.items.push({
           "id":"1","email":"a@b.com"});

  $scope.items.push({
           "id":"2","email":"x@y.com"});
  $scope.items.push({
           "id":"2","email":"x@y.com"});


});

根据我的理解,我应该得到错误,并且数组中有重复的对象

然而它变得完美呈现.这是plunker链接

ng-repeat-demo

显然我遗漏了一些基本的东西.有人能指出我在理解方面的差距吗?

编辑

这是我在我的应用程序中面临的问题(只有电子邮件ID因为显而易见的原因而被更改)

ExampleApp.filter(“extractEmail”,function(){

return function(items){
    //console.log("test" + input[0].highlight.file[0]);
    var filtered = [];

    console.log(" items == " + items);


    angular.forEach(items,function(item){

      if (item){
        var obj = item.highlight.file[0].toString().match(/([\w-\.]+)@((?:[\w]+\.)+)([a-zA-Z]{2,4})/);

      if (obj) {
        //console.log(obj[0]);
        filtered.push(obj[0]);
      }

      }


    }); 

    console.log(filtered);
    return filtered;
  }

});

我的console.log打印[“a@gmail.com”,“a @ gmail.com”,“b @ gmail.com”,“b @ gmail.com”]

我得到的错误

Error: [ngRepeat:dupes] Duplicates in a repeater are not allowed. Use 'track by' expression to specify unique keys. Repeater: x in clusterState| extractEmail,Duplicate key: string:a@b.com,Duplicate value: “a@b.com"

我用类似的代码更新了plunker.无法重现

第二次编辑

问题出在我使用的版本上:
Angular JS 1.0.x支持重复无法重现
http://plnkr.co/edit/qrOez7aZ7X1jsOrmkfiP?p=preview

随着后期版本能够重现

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

解决方法

javascript中的对象通过引用进行比较,而不是通过值进行比较.
如果对象的内容与另一个对象的内容完全相同,则无关紧要,如果引用不指向同一对象,则它们是不同的.
例如.:
// In this case "var a" and "var b" points to different objects.
var a = {};
var b = {};

a == b; // false

// Here,they points to the same one
var a = {};
var b = a;

a == b; // true

如果您需要每个条目都是独特的,您必须自己检查每个条目.
Angular ngRepeat有一个语法变体,它使用track by来决定哪个条目是不同的(或重复的).

<div ng-repeat="entry for entries track by entry.id">{{entry.email}}</div>
原文链接:https://www.f2er.com/js/150124.html

猜你在找的JavaScript相关文章