NgSwitchDefault

Creates a view that is added to the parent NgSwitchwhen no case expressions match the switch expression.

当没有任何 case 表达式匹配 switch 表达式的结果时,就会在父指令 NgSwitch中创建一个视图。

@Directive({ selector: '[ngSwitchDefault]' }) class NgSwitchDefault { }

选择器

[ngSwitchDefault]

说明

Insert the sub-tree when no case expressions evaluate to the same value as the enclosing switch expression.

当没有任何一个 case 表达式与 switch 表达式的求值结果相同时,则插入该子树。

See NgSwitchfor more details and example.

参见 NgSwitch了解详情并查看例子。

使用说明

<container-element [ngSwitch]="switch_expression"> <some-element *ngSwitchCase="match_expression_1">...</some-element> <some-other-element *ngSwitchDefault>...</some-other-element> </container-element>