ZPY博客

Angular *ngIf else 使用

在Angular 4 and 5中使用 else:

这里要注意一点:ngIf里的I是大写!!

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