我可以在 angularjs 表达式中以某种方式使用 if-then-else 构造(三元运算符)吗? 例如,函数 $scope.isExists (item)必须返回 bool 值。 我想要这样的东西,
<div ng-repeater="item in items">
<div>{{item.description}}</div>
<div>{{isExists(item) ? 'available' : 'oh no, you don't have it'}}</div>
</div>
我知道我可以使用返回字符串的函数,我对在表达式中使用 if-then-else 构造的可能性很感兴趣。 谢谢。