我正在尝试在表中添加一个累积列。如下所示:
A ACC
1 6
2 5
3 3
模板:
<ng-container matColumnDef="accu-chu">
<th mat-header-cell *matHeaderCellDef mat-sort-header="ACC-CHU"> Accu CHU</th>
<td mat-cell *matCellDef="let element;" [ngModel]="accCHU">{{element.CHU + accCHU}}</td>
</ng-container>
组件:
accCHU = 0;
但是它总是返回与A列相同的值。我当时在考虑使用索引,但我需要在逻辑中存储值。我研究了Angular Material Table API,但找不到简单的解决方案。
视觉说明: