Angular *ngIf else 使用

作者: 阿踏 | 来源:发表于2018-02-23 16:05 被阅读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>
    

    相关文章

      网友评论

        本文标题:Angular *ngIf else 使用

        本文链接:https://www.haomeiwen.com/subject/zhuxxftx.html