angular2的ngfor和ngif指令嵌套

来源:互联网 发布:网络传播杂志官网 编辑:程序博客网 时间:2024/05/17 06:23

ng2 结构指令不能直接嵌套使用,可使用标签来包裹指令

示例如下

<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>: