1

使用 else :

<div *ngIf="isValid;else other_content">
    content here ...
</div>
<ng-template #other_content>other content here...</ng-template>

你也可以使用 then else :

<div *ngIf="isValid;then content else other_content">here is ignored</div>    
<ng-template #content>content here...</ng-template>
<ng-template #other_content>other content here...</ng-template>

或者使用单独的 then :

<div *ngIf="isValid;then content"></div>    
<ng-template #content>content here...</ng-template>

Demo示例 :

Plunker


Guoye
318 声望9 粉丝