因此,我尝试使用三元运算符将2个跨度组合为:
<span ng-if="customer != null">{{ customer }}</span><span ng-if="customer == null">[customer]</span>
该开关仅基于id是否在表单中其他位置的输入中具有值。建议?
非常感谢。
答案 0 :(得分:2)
<span>{{ (customer != null) ? customer : '[customer]' }}</span>
也可以写成:
<span>{{ customer || '[customer]' }}</span>