AngularJS 使用ng-repeat报错 [ngRepeat:dupes]
AngularJS使用ng-repeat报错
[ngRepeat:dupes]Duplicatesinarepeaterarenotallowed.Use'trackby'expressiontospecifyuniq
ng-repeat报错
<divng-init="words=['高校','高校','高校']"ng-repeat="wordinwords"> {{word}} </div>
[ngRepeat:dupes]Duplicatesinarepeaterarenotallowed.Use'trackby'expressiontospecifyuniquekeys
发现是因为相同的内容重复引起,解决方案
<divng-init="words=['高校','高校','高校']"ng-repeat="wordinwordstrackby$index"> {{word}} </div>
在ng-repeat后面加上
trackby$index
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!