我有
foo: {
a1: true,
a2: true
}
当我<div ng-repeat="(key, val) in foos">{{val}}</div>
使用 foos时angularFire()
我回来Duplicates in a repeater are not allowed. Repeater: (key, val) in foos key: boolean:true
为什么它true
作为键调用并且不允许循环?
更新
这是 angularFire();
angularFire(firebaseRef, $scope, 'foos');
它仅在它们具有不同的值时循环。
更新 2
我发现了问题。这是 angularJS 1.1.5 的问题
看看这个plnkr