美文网首页
[angular]ngfor和ngif指令嵌套

[angular]ngfor和ngif指令嵌套

作者: hulaye | 来源:发表于2018-08-10 16:43 被阅读0次

    angular结构指令不能直接嵌套使用,可使用<ng-container>标签来包裹指令

    示例如下:

    <ul>
    <ng-container *ngFor="let item of lists">
    <div class="thumb p-date" *ngIf="item.picurl">
    <a href="# "><img src="{{item.picurl}} " alt=" " style="width:79px;height: 70px; "></a>
    </div>
    </ng-container>
    </ul>
    

    相关文章

      网友评论

          本文标题:[angular]ngfor和ngif指令嵌套

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