为什么下面的一个不起作用?我需要将IsValue
转换为大写值,然后使用NO
值进行检查。该怎么办?
<td class="red-color" ng-if="item.IsValue | uppercase == 'NO'">{{item.IsValue}}</td>
最佳答案
在比较值之前,确保应用 uppercase
过滤器(使用 ()
):
<td class="red-color" ng-if="(item.IsValue | uppercase) == 'NO'">{{item.IsValue}}</td>
这是一个working plunker。