我有一个数组,该数组在视图中以ngFor
进行迭代,如下所示。
如果y.errortyp
的所有元素都是nottested
,我想隐藏按钮。
我如何实现此功能?我尝试了ngIf
的某些组合,但找不到解决方案。
<...>
<tr *ngFor="let x of x">
<td> x.name</td>
<td *ngFor="let y of x.results">
<div *ngIf="y.errortyp == 'Error1'" class="red"></div>
<div *ngIf="y.errortyp == 'nottested'" class="grey"></div>
</td>
<td>
<button type="button" class="btn btn-default btn-lg btn-block" aria-label="Left Align"
(click)="download(x)">
Download
</button>
</td>
<...>