在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允许表达式,您可以使用占位符,因此:
原文链接:https://www.f2er.com/angularjs/144044.html<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)。