如果x.phone2
为空,则要隐藏在元素下方。
<div class="telePhone" ><strong>Phone2 :</strong> {{x.phone2}}</div>
答案 0 :(得分:1)
您可以使用ng-if
(docs):
<div class="telePhone" ng-if="x.phone2"><strong>Phone2 :</strong> {{x.phone2}}</div>
答案 1 :(得分:0)
<div class="telePhone"
ng-if="x.phone2">
<strong>Phone2 :</strong> {{x.phone2}}
</div>
答案 2 :(得分:0)
如果想隐藏它并且不需要双向绑定使用:
<div class="telePhone" ng-if="x.phone"><strong>Phone2 :</strong> {{x.phone2}}</div>
如果您仍需要双向绑定使用:
<div class="telePhone" ng-show="x.phone"><strong>Phone2 :</strong> {{x.phone2}}</div>
使用ng-if会降低开销,但如果需要显示div,如果x.phone值发生变化,则需要使用ng-show。