只需要在ng-if-else中快速帮助
<div ng-if = "{{t.assignee}} != 'A CONTACT NAME'">
{{t.assignee}}
</div>
t.assignee存储在数组中。它无法正常工作
答案 0 :(得分:0)
不要使用表达式
<div ng-if = "t.assignee != 'A CONTACT NAME'">
{{t.assignee}}
</div>
答案 1 :(得分:0)
ng-if
已处于角度背景中,因此您可以执行此操作:
<div ng-if = "t.assignee != 'A CONTACT NAME'">
{{t.assignee}}
</div>
无需在指令中使用表达式。
答案 2 :(得分:0)
1-如果不是数组,请尝试此操作
<div ng-if = "t.assignee !== 'A CONTACT NAME'">
{{t.assignee}}
</div>