Angular.js专场Angular开发指南angular从入门到一脸懵逼

Angular *ngIf else 使用

2018-02-23  本文已影响19人  阿踏

在Angular 4 and 5中使用 else:

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

也可以使用以下方式使用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>

或者下边的方式 :

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

猜你喜欢

热点阅读