一个跨度中的角度ng-if三元运算符?

时间:2016-08-09 21:02:35

标签: html angularjs forms

因此,我尝试使用三元运算符将2个跨度组合为:

<span ng-if="customer != null">{{ customer }}</span><span ng-if="customer == null">[customer]</span>

该开关仅基于id是否在表单中其他位置的输入中具有值。建议?

非常感谢。

1 个答案:

答案 0 :(得分:2)

你的意思是:

<span>{{ (customer != null) ? customer : '[customer]' }}</span>

也可以写成:

<span>{{ customer || '[customer]' }}</span>