角5:* ngFor和ngIf与整个数组的组合

时间:2018-07-02 12:41:21

标签: angular5 ngfor ngif

我有一个数组,该数组在视图中以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>
<...>

0 个答案:

没有答案