我正在尝试使用ngrepeat scenarion中的angularjs禁用图标。我正在检查所有者是否为null然后是disbale图标。在我的情况下,图标永远不会被禁用。
我尝试打印{{item.owner == null}},结果为true。
可能是什么问题,为什么图标没有禁用?
<tr ng-repeat="item in items">
<td style="color: gray;" title="chat">
<a ng-href="sip:{{item.Email}}" ng-disabled="{{item.owner == null}}">
<span class="glyphicon glyphicon-comment"></span>
</a>
</td>