angularjs – Angular.js ng-switch —测试值是空还是未定义

前端之家收集整理的这篇文章主要介绍了angularjs – Angular.js ng-switch —测试值是空还是未定义前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Angular.js模板中,我需要测试一个值是否未定义或为空….我不知道如何在ng-switch之后执行此操作,当对字符串中的表达式进行测试时。我需要使用ng-switch,因为它是一个if else条件。有任何想法吗?
<div ng-switch="vipLabel">
  <div ng-switch-when="vipLabel.toString()">
    <h1>Getting infomration...one sec</h1>
  </div>
    <div ng-switch-default>
      <h3>Do you wish to unbind {{node.label}} from {{ vipLabel }}?</h3>
    </div>
</div>
ng-switch允许表达式,您可以使用占位符,因此:
<div ng-switch="selection || '_undefined_'" >      
      <span ng-switch-when="_undefined_">I am set to zero or undefined?!</span>      
      <span ng-switch-default>This string is not empty</span>
</div>

欲了解更多信息:ng-switch on empty string

你通常在控制器内(见链接的回答#1)。

原文链接:https://www.f2er.com/angularjs/144044.html

猜你在找的Angularjs相关文章