我的问题是我想使用材料表中的选择,但是由于某种原因它在表面中有其位置,但是未出现该复选框。
这是我的HTML代码:
<table mat-table [dataSource]="dataSource" mat-elevation-z8>
<ng-container matColumnDef="select">
<th mat-header-cell *matHeaderCellDef>
<mat-checkbox (change)="$event ? masterToggle() : null"
[checked]="selection.hasValue() && isAllSelected()"
[indeterminate]="selection.hasValue() && !isAllSelected()"
[aria-label]="checkboxLabel()">
</mat-checkbox>
</th>
<td mat-cell *matCellDef="let row">
<mat-checkbox (click)="$event.stopPropagation()"
(change)="$event ? selection.toggle(row) : null"
[checked]="selection.isSelected(row)"
[aria-label]="checkboxLabel(row)">
</mat-checkbox>
</td>
</ng-container>
<!-- ... -->
</table>
还有我的TS文件:
import { MatTableDataSource } from '@angular/material/table';
import { SelectionModel } from '@angular/cdk/collections';
export abstract class MyClass implements OnInit {
devizas: DevizaInterface[] = [
{
id: '1',
name: 'dollar',
code: 'USD' ,
}
//...
];
dataSource = new MatTableDataSource<DevizaInterface>(devizas);
selection = new SelectionModel<DevizaInterface> (true, []);
isAllSelected() {
const numSelected = this.selection.selected.length;
const numRows = this.dataSource.data.length;
return numSelected === numRows;
}
masterToggle() {
this.isAllSelected() ?
this.selection.clear() :
this.dataSource.data.forEach(row => this.selection.select(row));
}
checkboxLabel(row?: PeriodicElement): string {
if (!row) {
return `${this.isAllSelected() ? 'select' : 'deselect'} all`;
}
return `${this.selection.isSelected(row) ? 'deselect' : 'select'} row ${row.id + 1}`;
}
}
我按照文档中的说明进行了所有操作,其他功能(排序,过滤)也没错。 在app.module.ts中,我导入了所需的一切。 可能是什么问题?我为此写的哪一部分不好?
答案 0 :(得分:0)
您需要输入: displayedColumns:string [] = ['select','id','name','code']; 并从您的HTML文件中调用它:
关键是不要忘记在显示的列“ 选择”中添加字段,因为它还会显示带有复选框的列,以及其他属于界面的字段。