ng-repeat not working over collections that contains dupes ng-repeat not working over collections that contains dupes dart dart

ng-repeat not working over collections that contains dupes


This feature has been added to AngularJS in newer versions.the point is that basically you should not iterate over some primitive types (e.g. numbers) but over some complex objects.

from what I've understood the ngRepeat directive checks the references not the actual values so if you iterate over some complex objects it woks but if you try to do that over a set of primitive types it will most likely not work as long as "all" the values differ from one another.

EDIT

The following lines are copies and pasted from this link (and make sure you are using a relatively up-to-date version of AngularJS - I'm using 1.1.5 and it's working perfectly -)

Description

Occurs if there are duplicate keys in an ngRepeat expression. Duplicate keys are banned because AngularJS uses keys to associate DOM nodes with items.

By default, collections are keyed by reference which is desirable for most common models but can be problematic for primitive types that are interned (share references).

For example the issue can be triggered by this invalid code:

<div ng-repeat="value in [4, 4]"></div>

To resolve this error either ensure that the items in the collection have unique identity of use the track by syntax to specify how to track the association between models and DOM.

To resolve the example above can be resolved by using track by $index, which will cause the items to be keyed by their position in the array instead of their value:

<div ng-repeat="value in [4, 4] track by $index"></div>


One thing you can do is add "track by $index" as in angular documentation which will change the tracking logic to index of the element rather than value of the element, but this will display the repeated values. To display only unique values you can filter out the unique values by writing a function like :

    var uniqueValues = function(data){        var check = {};        var uniqueValue = [];        for(i-0;i<data.length;i++){           if(!check[data[i]]){              uniqueValue.push(data[i]);              check(data[i]) = true;           }        }        return uniqueValue;}

and then do a ng-repeat on this.


The Angular Filter 3rd party filer contains a 'unique' filter that will give you just the unique entries in your collection.

https://github.com/a8m/angular-filter

Usage:

collection | unique: 'property'