AngularJS 使用ng-repeat报错 [ngRepeat:dupes]
程序员文章站
2023-10-31 19:51:16
angularjs 使用ng-repeat报错
[ngrepeat:dupes] duplicates in a repeater are not allow...
angularjs 使用ng-repeat报错
[ngrepeat:dupes] duplicates in a repeater are not allowed. use 'track by' expression to specify uniq
ng-repeat报错
<div ng-init="words = ['高校','高校','高校']" ng-repeat="word in words"> {{word}} </div>
[ngrepeat:dupes] duplicates in a repeater are not allowed. use 'track by' expression to specify unique keys
发现是因为相同的内容重复引起,解决方案
<div ng-init="words = ['高校','高校','高校']" ng-repeat="word in words track by $index"> {{word}} </div>
在ng-repeat后面加上
track by $index
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
推荐阅读
-
AngularJS ng-repeat指令中使用track by子语句解决重复数据遍历错误问题
-
AngularJS 使用ng-repeat报错 [ngRepeat:dupes]
-
angularjs在ng-repeat中使用ng-model遇到的问题
-
Angularjs使用ng-repeat中$even和$odd属性的注意事项
-
AngularJS使用自定义指令替代ng-repeat的方法
-
angularjs使用gulp-uglify压缩后执行报错的解决方法
-
AngularJS实践之使用ng-repeat中$index的注意点
-
AngularJs使用ng-repeat实现数据循环展示的效果(代码教程)
-
AngularJS使用Filter自定义过滤器控制ng-repeat去除重复功能示例
-
AngularJS使用ng-repeat指令实现下拉框