错误如下:
ngular.js:13424 Error: [ngRepeat:dupes] Duplicates in a repeater are not allowed. Use 'track by' expression to specify unique keys. Repeater:
<li ng-repeat="x in list1 track by $index ">
{{x}}
</li>
在循环里加上track by $index
数组中是不允许存在两个相同的数字的。为了规避这个错误,需要定义自己的track by表达式