AngularJS:ng-switch-when with a OR

前端之家收集整理的这篇文章主要介绍了AngularJS:ng-switch-when with a OR前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在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仅允许您比较单个条件。

我想要测试多个条件,你可以使用ng-如果可用version 1.1.5

Reference

重要的是要注意,使用ng-if和ng-switch remove the element from the DOM结构,与显示和隐藏相反。

当你遍历DOM寻找元素时,这是很重要的。

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

猜你在找的Angularjs相关文章