以下是一个使用Angular Material表格的示例,其动态加载数据直到点击分页器或排序后才显示:
import { MatTableDataSource } from '@angular/material/table';
import { MatPaginator } from '@angular/material/paginator';
import { MatSort } from '@angular/material/sort';
export class YourComponent {
dataSource: MatTableDataSource;
displayedColumns: string[] = ['name', 'age', 'email'];
isLoading: boolean = true;
@ViewChild(MatPaginator) paginator: MatPaginator;
@ViewChild(MatSort) sort: MatSort;
constructor(private yourService: YourService) {}
ngOnInit() {
this.loadData();
}
loadData() {
this.yourService.getData().subscribe(data => {
this.dataSource = new MatTableDataSource(data);
this.dataSource.paginator = this.paginator;
this.dataSource.sort = this.sort;
this.isLoading = false;
});
}
applyFilter(filterValue: string) {
this.dataSource.filter = filterValue.trim().toLowerCase();
}
}
Loading...
Name
{{row.name}}
Age
{{row.age}}
Email
{{row.email}}
注意:上述示例中的YourService
是你自己定义的用于获取数据的服务类。确保你的服务类返回的数据是一个Observable对象。
希望这个示例能帮到你!