作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 Angular 在表格页脚中显示列值的总数。
<mat-header-row class="sticky-header" *matHeaderRowDef="['player', 'team', 'goals']"></mat-header-row>
<mat-row *matRowDef="let row; columns: ['player', 'team', 'goals']"></mat-row>
<mat-row class="sticky-footer" *matRowDef="let row: columns: ['total']; when:isLastRow"></mat-row>
...
export class AppComponent {
dataSource: PlayerDataSource;
isLastRow = (data, index) => index === this.players.length;
players = STATS.slice();
constructor() {
this.dataSource = new PlayerDataSource();
this.dataSource.use(this.players.slice());
}
}
看完这篇github topic我创建了 this stackblitz示例,但总和不显示在页脚中。
任何人都可以对这个主题有所了解吗?没有这方面的例子。谢谢。
最佳答案
angular material documentation 中有说明以及 examples 中的示例.
您需要做的是以与每列中的标题类似的方式定义页脚单元格。在页脚列的列绑定(bind)中,您可以直接定义计算总和的方式。无需添加包含总数据的另一行。之后,您只需添加页脚行定义即可。
这是您的示例中更改后的模板:
<mat-table [dataSource]="dataSource">
<!-- Columns -->
<ng-container matColumnDef="player">
<mat-header-cell *matHeaderCellDef> Player </mat-header-cell>
<mat-cell *matCellDef="let player"> {{ player.name }}</mat-cell>
<mat-footer-cell *matFooterCellDef></mat-footer-cell>
</ng-container>
<ng-container matColumnDef="team">
<mat-header-cell *matHeaderCellDef> Team </mat-header-cell>
<mat-cell *matCellDef="let player"> {{ player.team }}</mat-cell>
<mat-footer-cell *matFooterCellDef></mat-footer-cell>
</ng-container>
<ng-container matColumnDef="goals">
<mat-header-cell class="right-align" *matHeaderCellDef> Goals </mat-header-cell>
<mat-cell class="right-align" *matCellDef="let player"> {{ player.goals }}</mat-cell>
<mat-footer-cell *matFooterCellDef> Total: {{ calculateTotal() }}</mat-footer-cell>
</ng-container>
<!-- Rows -->
<mat-header-row class="sticky-header" *matHeaderRowDef="['player', 'team', 'goals']"></mat-header-row>
<mat-row *matRowDef="let row; columns: ['player', 'team', 'goals']"></mat-row>
<mat-footer-row class="sticky-footer" *matFooterRowDef="['player', 'team', 'goals']"></mat-footer-row>
</mat-table>
还有更改的组件代码,因此您不需要修改数据。
export class AppComponent {
dataSource: PlayerDataSource;
isLastRow = (data, index) => index === this.players.length;
players = STATS.slice();
constructor() {
this.dataSource = new PlayerDataSource();
this.dataSource.use(this.players.slice());
}
public calculateTotal() {
return this.players.reduce((accum, curr) => accum + curr.goals, 0);
}
}
export class PlayerDataSource extends DataSource<PlayerOrTotal> {
dataWithTotal = new BehaviorSubject<PlayerOrTotal[]>([]);
use(players: Player[]) {
this.dataWithTotal.next([ ...players]);
}
connect(): Observable<PlayerOrTotal[]> {
return this.dataWithTotal.asObservable();
}
disconnect() {}
}
我还创建了您的 StackBlitz 的一个分支你可以在哪里看到它的工作原理。
关于angular - 如何使用Angular计算表格列的总和并在页脚中显示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55580753/
我是一名优秀的程序员,十分优秀!