Ng-repeat不适用于数组中的数组

时间:2017-03-29 21:07:33

标签: ionic-framework

我是离子的新手,我需要用ng-repeat循环对象,我总是得到这个错误

错误:[ngRepeat:dupes]不允许在转发器中重复。使用'track by'表达式指定唯一键。 Repeater:allInfos中的信息,Duplicate键:string:“,重复值:

this is my arrays

请帮忙......

2 个答案:

答案 0 :(得分:0)

<div ng-repeat="items in objectArr">
     <div class="list">
          <a class="item" href="#">{{items['name']}}</a>
     </div>
</div>

答案 1 :(得分:0)

由于tack by表达式的值重复,因此发生重复错误。最好通过$index中的ng-repeat跟踪。试试这个。

<div ng-repeat="item in Array track by $index">
    {{item}}
</div>