试图设置角质材料表的数据源时,会陷入困境。
这就是我想做的:
export class ServersTableDataSource extends DataSource<Server> {
data: Server[] = EXAMPLE_DATA;
constructor(private paginator: MatPaginator, private sort: MatSort, private serversService: ServersService) {
super();
this.data = this.serversService.getServers();
}
connect(): Observable<Server[]> {
const dataMutations = [
observableOf(this.data),
this.paginator.page,
this.sort.sortChange
];
// Set the paginators length
this.paginator.length = this.data.length;
return merge(...dataMutations).pipe(map(() => {
return this.getPagedData(this.getSortedData([...this.data]));
}));
}
export class ServersTableComponent implements OnInit {
constructor(private serversService: ServersService) { }
ngOnInit() {
this.dataSource = new ServersTableDataSource(this.paginator, this.sort, this.serversService);
this.serversService.serversChanges.subscribe(() => {
this.dataSource.data = this.serversService.getServers();
});
//done this way because for unknown reason if i return an observable,
//it doesn't pass a value. Anyway, this isn't relevant. The point is that this.dataSource.data is set.
}在本例中,尽管connect方法中有connect,但this.dataSource.data更改不适用。
我能让它工作的唯一方法是对每次更改重新初始化数据源,这感觉不对(表经常从websocket数据中更新)。
ngOnInit() {
this.dataSource = new ServersTableDataSource(this.paginator, this.sort, this.serversService);
this.serversService.serversChanges.subscribe(() => {
this.dataSource = new ServersTableDataSource(this.paginator, this.sort, this.serversService);
});
}发布于 2018-06-28 14:13:38
解决方案是使用BehaviorSubject实现不同的更新机制,并通过index跟踪行(由于某种原因,它无法使用唯一的obj子属性进行跟踪)。
数据源:
export class ServersTableDataSource extends DataSource<Server> {
data: Server[] = [];
constructor(private paginator: MatPaginator, private sort: MatSort, private serversService: ServersService) {
super();
}
connect(): Observable<Server[]> {
return new Observable<Server[]>(observer => {
this.serversService.getServersSubj().subscribe((servers) => {
if (servers) {
return this.applyMutations(servers).subscribe(data => {
observer.next(data);
});
}
});
});
}
disconnect() {
}
applyMutations(tmpData: Server[]): Observable<Server[]> {
const dataMutations = [
observableOf(tmpData),
this.paginator.page,
this.sort.sortChange
];
// Set the paginators length
this.paginator.length = this.data.length;
return merge(...dataMutations).pipe(map(() => {
return this.getPagedData(this.getSortedData([...tmpData]));
}));
}跟踪更改:
<mat-table #table [dataSource]="dataSource"
[trackBy]="trackByIndex"
multiTemplateDataRows
matSort
aria-label="Elements">
***in component:***
trackByIndex(index, item) {
return index;
}this.serversService.getServersSubj()返回BehaviorSubject。
https://stackoverflow.com/questions/50977621
复制相似问题