面向列的垫子-table
Column oriented mat-table
我有一种情况,我从后端收到的数据是面向列的。此数据的示例如下:
[
{ columnName: "ID", cells: [1, 2, 3, 4, 5] },
{ columnName: "Name", cells: ["a", "b", "c", "d", "e"] }
]
到目前为止,我已经设法像这样配置我的 mat-table:
<table mat-table [dataSource]="data" class="mat-elevation-z8">
<ng-container [matColumnDef]="column" *ngFor="let column of displayedColumns">
<th mat-header-cell *matHeaderCellDef> {{column}} </th>
<td mat-cell *matCellDef="let element">{{element | json}}</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
这给了我以下结果:
而实际上我希望看到这样的 table:
|------|------|
| ID | NAME |
|------|------|
| 1 | a |
| 2 | b |
| 3 | c |
| 4 | d |
| 5 | e |
有什么方法可以调整 matRowDef 以便将单元格 属性 定义为行?理想情况下,我只想在 mat-table 中更改它,这样我就不需要操作我的数据然后再将其转换回来。
您可以尝试根据需要修改现有的响应:
HTML代码:
<table mat-table [dataSource]="dataSource" class="mat-elevation-z8">
<ng-container [matColumnDef]="column" *ngFor="let column of displayedColumns">
<th mat-header-cell *matHeaderCellDef> {{column}} </th>
<td mat-cell *matCellDef="let element"> {{element[column]}} </td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
TS代码:
import { Component } from '@angular/core';
import { MatTableDataSource } from '@angular/material';
const ELEMENT_DATA: any[] = [
{ columnName: "ID", cells: [1, 2, 3, 4, 5] },
{ columnName: "Name", cells: ["a", "b", "c", "d", "e"] }
];
/**
* @title Basic use of `<table mat-table>`
*/
@Component({
selector: 'table-basic-example',
styleUrls: ['table-basic-example.css'],
templateUrl: 'table-basic-example.html',
})
export class TableBasicExample {
displayedColumns = []
dataSource = new MatTableDataSource([]);
constructor() {
// Take Column names dynamically
ELEMENT_DATA.forEach(x => {
this.displayedColumns.push(x.columnName)
})
// Format the array as you want to display
let newlyFormedArray = ELEMENT_DATA.reduce((array, { columnName, cells }) => {
cells.forEach((cell, index) => {
array[index] = Object.assign({ [columnName]: cell }, array[index])
})
return array;
}, [])
this.dataSource = new MatTableDataSource(newlyFormedArray);
}
}
我有一种情况,我从后端收到的数据是面向列的。此数据的示例如下:
[
{ columnName: "ID", cells: [1, 2, 3, 4, 5] },
{ columnName: "Name", cells: ["a", "b", "c", "d", "e"] }
]
到目前为止,我已经设法像这样配置我的 mat-table:
<table mat-table [dataSource]="data" class="mat-elevation-z8">
<ng-container [matColumnDef]="column" *ngFor="let column of displayedColumns">
<th mat-header-cell *matHeaderCellDef> {{column}} </th>
<td mat-cell *matCellDef="let element">{{element | json}}</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
这给了我以下结果:
而实际上我希望看到这样的 table:
|------|------|
| ID | NAME |
|------|------|
| 1 | a |
| 2 | b |
| 3 | c |
| 4 | d |
| 5 | e |
有什么方法可以调整 matRowDef 以便将单元格 属性 定义为行?理想情况下,我只想在 mat-table 中更改它,这样我就不需要操作我的数据然后再将其转换回来。
您可以尝试根据需要修改现有的响应:
HTML代码:
<table mat-table [dataSource]="dataSource" class="mat-elevation-z8">
<ng-container [matColumnDef]="column" *ngFor="let column of displayedColumns">
<th mat-header-cell *matHeaderCellDef> {{column}} </th>
<td mat-cell *matCellDef="let element"> {{element[column]}} </td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
TS代码:
import { Component } from '@angular/core';
import { MatTableDataSource } from '@angular/material';
const ELEMENT_DATA: any[] = [
{ columnName: "ID", cells: [1, 2, 3, 4, 5] },
{ columnName: "Name", cells: ["a", "b", "c", "d", "e"] }
];
/**
* @title Basic use of `<table mat-table>`
*/
@Component({
selector: 'table-basic-example',
styleUrls: ['table-basic-example.css'],
templateUrl: 'table-basic-example.html',
})
export class TableBasicExample {
displayedColumns = []
dataSource = new MatTableDataSource([]);
constructor() {
// Take Column names dynamically
ELEMENT_DATA.forEach(x => {
this.displayedColumns.push(x.columnName)
})
// Format the array as you want to display
let newlyFormedArray = ELEMENT_DATA.reduce((array, { columnName, cells }) => {
cells.forEach((cell, index) => {
array[index] = Object.assign({ [columnName]: cell }, array[index])
})
return array;
}, [])
this.dataSource = new MatTableDataSource(newlyFormedArray);
}
}