Podcast/lib/angular/docs/partials/error/ngRepeat:dupes.html
2013-08-21 19:46:51 +02:00

17 lines
1.8 KiB
HTML
Executable file

<a href="http://github.com/angular/angular.js/edit/master/docs/content/error/ngRepeat/dupes.ngdoc" class="improve-docs btn btn-primary"><i class="icon-edit"> </i> Improve this doc</a><h1><code ng:non-bindable="">Duplicate Key in Repeater</code>
<div><span class="hint">error in component <code ng:non-bindable="">ngRepeat</code>
</span>
</div>
</h1>
<div><pre class="minerr-errmsg" error-display="Duplicates in a repeater are not allowed. Use 'track by' expression to specify unique keys. Repeater: {0}, Duplicate key: {1}">Duplicates in a repeater are not allowed. Use 'track by' expression to specify unique keys. Repeater: {0}, Duplicate key: {1}</pre>
<h2 id="Description">Description</h2>
<div class="description"><div class="ngrepeat-page ngrepeat-dupes-page"><p>Occurs if there are duplicate keys in an <a href="api/ng.directive:ngRepeat"><code>ngRepeat</code></a> expression. Duplicate keys are banned because AngularJS uses keys to associate DOM nodes with items.</p>
<p>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).</p>
<p>For example the issue can be triggered by this <em>invalid</em> code:</p>
<pre><code>&lt;div ng-repeat=&quot;value in [4, 4]&quot;&gt;
&lt;/div&gt;</code></pre>
<p>To resolve this error either ensure that the items in the collection have unique identity of use the <code>track by</code> syntax to specify how to track the association between models and DOM.</p>
<p>To resolve the example above can be resolved by using <code>track by $index</code>, which will cause the items to be keyed by their position in the array instead of their value:</p>
<pre><code>&lt;div ng-repeat=&quot;value in [4, 4] track by $index&quot;&gt;&lt;/div&gt;</code></pre>
</div></div>
</div>