在动态ng-repeat中使用ng-style

时间:2015-12-23 14:34:39

标签: javascript angularjs angularjs-directive ng-repeat ng-style

我有一个动态<html> <head> ... <link rel="alternate" href="ios-app://{itunes_id}/{scheme}/{host_path}" /> ... </head> ,用户可以在其中更改项目数。

简化JS:

ng-repeat

HTML:

$scope.items = [1, 2, 3, 4];
$scope.getBoxBackgroundColor = function () { return '#FF0000'; }
$scope.addItem = function () { $scope.items.push($scope.items.length + 1); }

问题:

添加新项目时,<div ng-repeat="item in items" ng-style="{ 'backgroundColor': getBoxBackgroundColor() }"></div> <button ng-click="addItem()">Add Item</button> 指令未调用ng-style函数。

有什么建议吗?

谢谢!

0 个答案:

没有答案