不是将数据显示到表的常规方式。我正在尝试创建我的自定义表格组件,并通过将数据投影到材料表中。
像这样:
<table mat-table [dataSource]="dataSource">
<!-- I want to Render the header and cell data here -->
<ng-content></ng-content>
<mat-header-row *matHeaderRowDef="headers; sticky: true"></mat-header-row>
<mat-row *matRowDef="let row; columns: headers;"></mat-row>
</table>
所以我可以这样称呼这个定制组件:
<app-customized-table>
<ng-container matColumnDef="id">
<mat-header-cell *matHeaderCellDef> Id </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.Id}} </mat-cell>
</ng-container>
...etc
</app-customized-table>
但是,它不会检测到内容。这是我要尝试的一个例子。
https://stackblitz.com/edit/angular-qwvcln?file=src%2Fapp%2Fcustom-table.component.ts
有没有办法做到这一点?
谢谢。
答案 0 :(得分:4)
参加聚会有点晚,但我遇到了同样的挑战,并能够如下解决问题:
您可以通过使用@ContentChildren
和@ViewChild
功能将列定义以编程方式添加到表中来解决此问题:
您的模板文件(例如customized-table.component.html
):
<table mat-table [dataSource]="dataSource">
<ng-content></ng-content>
<mat-header-row *matHeaderRowDef="headers; sticky: true"></mat-header-row>
<mat-row *matRowDef="let row; columns: headers;"></mat-row>
</table>
您的隐藏代码(例如customized-table.component.ts
)
@Component({
selector: 'app-customized-table',
templateUrl: './customized-table.component.html'
})
export class CustomizedTableComponent<T> implements AfterContentInit {
constructor() { }
@Input() dataSource: T[]; // or whatever type of datasource you have
@Input() headers: string[];
// this is where the magic happens:
@ViewChild(MatTable, { static: true }) table: MatTable<T>;
@ContentChildren(MatColumnDef) columnDefs: QueryList<MatColumnDef>;
// after the <ng-content> has been initialized, the column definitions are available.
// All that's left is to add them to the table ourselves:
ngAfterContentInit() {
this.columnDefs.forEach(columnDef => this.table.addColumnDef(columnDef));
}
}
现在,您可以使用:
<app-customized-table [headers]="headers">
<ng-container matColumnDef="id">
<mat-header-cell *matHeaderCellDef> Id </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.Id}} </mat-cell>
</ng-container>
...etc
</app-customized-table>
答案 1 :(得分:1)
您必须采用一种非常不同的方法来使其工作。您已经注意到,mat-table不能将其内容包装在其他内容中。一种可能性是仅将数据提供给您的自定义组件,而不是将DOM作为内容提供。例如:
组件:
import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'app-custom-table',
template: `
<div>
{{name}}
<div class="example-container mat-elevation-z8">
<table mat-table [dataSource]="dataSource">
<mat-header-row *matHeaderRowDef="displayedColumns; sticky: true"></mat-header-row>
<mat-row *matRowDef="let row; columns: displayedColumns;"></mat-row>
<ng-container *ngFor="let column of displayedColumns; index as i" >
<ng-container [matColumnDef]="column">
<mat-header-cell *matHeaderCellDef>{{ columnLabels[i] }}</mat-header-cell>
<mat-cell mat-cell *matCellDef="let element"> {{element[valueKeys[i]]}} </mat-cell>
</ng-container>
</ng-container>
</table>
</div>
asd
</div>
`
})
export class CustomTable implements OnInit {
@Input() public columnLabels: any[];
@Input() public displayedColumns;
@Input() public dataSource;
@Input() public name: any;
@Input() public valueKeys: any[];
constructor() { }
ngOnInit() {
}
}
用法:
<app-custom-table name="sdf"
[dataSource]="dataSource"
[displayedColumns]="displayedColumns"
[columnLabels]="columnLabels"
[valueKeys]="displayedColumns">
</app-custom-table>
位置:
displayedColumns = ['position', 'name', 'weight', 'symbol'];
dataSource = ELEMENT_DATA;
columnLabels = ['No.', 'Name', 'Weight', 'Symbol'];
但是即使这样,也可能会遇到更多挑战。
答案 2 :(得分:-1)
您可以这样投影内容:
<ng-container *ngFor=”let column of displayedColumns” matColumnDef=”{{column.id}}”>
<th mat-header-cell *matHeaderCellDef mat-sort-header>{{column.name}}</th>
<td mat-cell *matCellDef=”let row”>
{{row[column.id]}}
</td>
</ng-container>
然后您传递用于内容投影的模板:
<my-component …
[itemTemplate]=”itemTemplate”>
<ng-template let-item #itemTemplate>
column id: {{item.column.id}}
value: {{item.value}}
</ng-template>
</my-component>