关于 angularJS 遍历数组 元素重复的解决方案

默认在ng-repeat的时候每一个item都要保证是唯一的,否则console就会打出error告诉你哪个key/value是重复的。如:

$scope.items = [
    'red',
    'blue',
    'yellow',
    'white',
    'blue'
];

这个数组blue就重复了,html这么遍历它

  • {{ item }}
  • 控制台就会抛出一个错误:

    点击错误链接到Angular官网看详细错误,官网明确给出是因为值重复了:Duplicates in a repeater are not allowed.Use 'track by' expression to specify unique keys. Repeater: item in items,Duplicate key: string:blue, Duplicate value: blue这就纳闷了,正常的业务里数组有重复的值是很正常的,数组要硬要搞成唯一的ng-repeat才能遍历就白瞎了,继续往下看,发现官网给了一个解决的方案:

    于是按照这个方案改了一下
  • {{ item }}
  • 刷新网页,内容被正常解析其实ng-repeat还是需要一个唯一的key,只不过你不track的话默认就是item本身,另外也只有在普通数据类型字符串,数字等才会出现这个问题,如果换成Object

    $scope.items = [
       ['red'],
       ['blue'],
       ['yellow'],
       ['white'],
       ['blue']
    ];
    
    html恢复为
  • {{ item }}
  • 你可能感兴趣的:(关于 angularJS 遍历数组 元素重复的解决方案)