在ng-switch中有可能有一个OR吗?
<div ng-repeat="w in windows" ng-show="visibleWindowId == w.id" ng-switch="w.type"> <div ng-switch-when="val1 **OR** val2"> sup </div> </div>
如果不是,如何才能实现上述目标?
谢谢 :)
ngswitch仅允许您比较单个条件。
原文链接:https://www.f2er.com/angularjs/145369.html我想要测试多个条件,你可以使用ng-如果可用version 1.1.5
重要的是要注意,使用ng-if和ng-switch remove the element from the DOM结构,与显示和隐藏相反。
当你遍历DOM寻找元素时,这是很重要的。