程式碼如下:
<p ng-switch="vm.status">
<p ng-switch-when="1">
<!--code-->
</p>
<p ng-switch-when="2">
<!--code-->
</p>
<p ng-switch-when="3">
<!--code-->
</p>
<p ng-switch-when="4">
<!--code-->
</p>
</p>
當值為1和2時,輸出的內容相同,這時能合併嗎,例如這樣:
<p ng-switch="vm.status">
<!--1和2时,合并在一起输出-->
<p ng-switch-when="1||2">
<!--code-->
</p>
<p ng-switch-when="3">
<!--code-->
</p>
<p ng-switch-when="4">
<!--code-->
</p>
</p>
在js裡,switch裡不寫break,可以穿透執行,但angular不知道該怎麼弄,教程上也沒有說這一塊
过去多啦不再A梦2017-05-15 16:55:38
ng-switch-when不能多值,但是可以變通,
http://stackoverflow.com/questions/22610543/angularjs-multiple-values-...