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