下面是一个使用Angular Material表格和日期过滤的代码示例:
首先,确保你已经安装了Angular Material并导入了所需的模块:
import { MatDatepickerModule } from '@angular/material/datepicker';
import { MatInputModule } from '@angular/material/input';
import { MatTableModule } from '@angular/material/table';
接下来,在你的组件模板中添加一个日期选择器和一个表格:
日期
{{ row.date | date }}
在组件类中,定义一个日期范围对象和一个用于过滤表格数据的方法:
import { Component } from '@angular/core';
@Component({
selector: 'app-table',
templateUrl: './table.component.html',
styleUrls: ['./table.component.css']
})
export class TableComponent {
dataSource = [
{ name: 'John', date: new Date('2020-01-01') },
{ name: 'Jane', date: new Date('2020-02-01') },
{ name: 'Bob', date: new Date('2020-03-01') }
];
displayedColumns = ['name', 'date'];
dateRange: { start: Date, end: Date };
filterData() {
if (!this.dateRange) {
return this.dataSource;
}
return this.dataSource.filter(item => {
return item.date >= this.dateRange.start && item.date <= this.dateRange.end;
});
}
}
最后,在模板中绑定日期选择器的值,并将过滤后的数据绑定到表格的数据源上:
现在,当你选择日期范围时,表格将自动根据选定的日期范围进行过滤。