AngularJS的三⽬运算符
以下演⽰的是在AngularJS的{{}}表达式中使⽤三⽬运算符,其实,在Javascript中,三⽬运算符的格式也与其⼀模⼀样,包括简写。<div ng-if="scope=='all'" class="outline-border">
结果:巡检路线数量:
<strong>{{utesCount==undefined?utesCount}}</strong>
,覆盖设备设施总数:
<strong>{{uteEqTotal==undefined?uteEqTotal}}</strong>
,巡检整体覆盖率:<strong>{{statistics.eqCoverRate==undefined?0:statistics.eqCoverRate}}%</strong>angular和angularjs
,特种设备数量:
<strong>{{uteSpecialEqTotal==undefined?"⽆":uteSpecialEqTotal}}</strong>
,特种设备巡检覆盖率:
<strong>{{statistics.eqSpecialCoverRate==undefined?0:statistics.eqSpecialCoverRate}}%</strong>.
</div>
如果是字符串,需要使⽤引号。
简写
<div ng-if="scope=='all'" class="outline-border">
结果:巡检路线数量:
<strong>{{utesCount:"字符串需使⽤引号"}}</strong>
,覆盖设备设施总数:
<strong>{{uteEqTotal:0}}</strong>
,巡检整体覆盖率:
<strong>{{statistics.eqCoverRate?statistics.eqCoverRate:0}}%</strong>
,
特种设备数量:
<strong>{{uteSpecialEqTotal:0}}</strong>
,特种设备巡检覆盖率:
<strong>{{statistics.eqSpecialCoverRate?statistics.eqSpecialCoverRate:0}}%</strong>.
</div>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论