时间:2021-06-13 08:45:16 | 栏目:AngularJS | 点击:次
ng2 结构指令不能直接嵌套使用,可使用标签来包裹指令
示例如下
<ul> <ng-container *ngFor="let item of lists"> <div class="thumb p-date" *ngIf="item.picurl"> <a href="# " rel="external nofollow" ><img src="{{item.picurl}} " alt=" " style="width:79px;height: 70px; "></a> </div> </ng-container> </ul>: