Angular ngSwitch寫法
使用ngSwitch在html行內撰寫不同case的switch條件和應用。
- Typescript定義指定值
1 | value = 10; |
- html撰寫ngSwitch屬性
當value為10時,顯示「value is 10」;當value為5時,顯示「value is 5」;其他時候顯示default。
1 | <div [ngSwitch]="value"> |
使用ngSwitch在html行內撰寫不同case的switch條件和應用。
1 | value = 10; |
當value為10時,顯示「value is 10」;當value為5時,顯示「value is 5」;其他時候顯示default。
1 | <div [ngSwitch]="value"> |