在Angular 7中使用mat-table时,你可能会遇到mat-checkbox和mat-checkbox标头的问题。以下是一个解决这些问题的示例代码:
Name
{{element.name}}
Age
{{element.age}}
import { Component } from '@angular/core';
import { MatTableDataSource } from '@angular/material/table';
import { SelectionModel } from '@angular/cdk/collections';
export interface Element {
name: string;
age: number;
}
@Component({
selector: 'app-table',
templateUrl: './table.component.html',
styleUrls: ['./table.component.css']
})
export class TableComponent {
displayedColumns: string[] = ['select', 'name', 'age'];
dataSource: MatTableDataSource;
selection = new SelectionModel(true, []);
constructor() {
// 初始化数据源
this.dataSource = new MatTableDataSource(ELEMENT_DATA);
}
// 切换所有行的选择状态
masterToggle() {
this.isAllSelected() ?
this.selection.clear() :
this.dataSource.data.forEach(row => this.selection.select(row));
}
// 是否所有行都已选择
isAllSelected() {
const numSelected = this.selection.selected.length;
const numRows = this.dataSource.data.length;
return numSelected === numRows;
}
}
// 数据源
const ELEMENT_DATA: Element[] = [
{name: 'John', age: 25},
{name: 'Jane', age: 30},
{name: 'Mike', age: 35},
{name: 'Sara', age: 20}
];
这样,你就可以在Angular 7中使用mat-table和mat-checkbox来创建带有选择功能的表格了。