私はng-repeat
を持っていて、ng-repeat
にはそれぞれborder-color
があります。だから私はng-repeatの各要素のスタイルが異なっています
getBgColor()
< div ng-repeat="channel in channelList"> <div ng-style="getBgColor()"> </div
を使用しているように定義される:私はエラー $rootScope:infdig] 10 $digest() iterations reached
を得続ける
$scope.currentColorIndex = (($scope.currentColorIndex+1) % $scope.radioColors.length);
$scope.tileColor = $scope.radioColors[$scope.currentColorIndex].hex;
return $scope.tileColor
私はすべてのng-repeat
にするので、エラーを取得していますなぜ私が知っている
反復私は別のオブジェクトを返します。この問題を回避するには何がありますか?