【发布时间】:2016-12-02 21:32:19
【问题描述】:
我在ng-repeat 中有一个ng-style。问题是 ng-style 值在更改后更新,但实际样式没有改变。
<tr class="row" ng-repeat="(hourIndex, hour) in day track by $index">
<td class="cell"
ng-style="{ 'background-color': '{{ switchBackgroundColor(hour) }}' }">
{{ hour }}%
</td>
</tr>
如上所述,每天一次,然后小时更改,ng-style 会更新。此更新未反映在样式中。
【问题讨论】: