编辑用户后,我正在尝试更新dataTable。
目前,dataSource已更新,但是更改在前端不可见。我的意思是,我的console.log(this.dataSource)
显示了很好的数据。但是在网页上并非如此。
这是我获取数据源(ngOnInit)的方式:
this.users.users().subscribe(data => {
this.dataSource.data = data;
});
这是我的update
函数:
/**
* Update an user
* @param user The user to update
*/
update(user: User) {
// users = user's services
this.users.edit(user)
.subscribe(
userEdited => {
const userIndex = this.dataSource.data.findIndex(usr => usr.id === user.id);
console.log('Before change :', this.dataSource.data[userIndex], userIndex);
this.dataSource.data[userIndex] = userEdited;
console.log('After change :', this.dataSource.data[userIndex], this.dataSource.data);
}
);
}
解决方案
我需要调用renderRows()
函数。
所以我在表上添加了一个引用,例如:<table mat-table #table [dataSource]="dataSource">
然后我声明一个@ViewChild
属性,例如@ViewChild('table', { static: true }) table: MatTable<any>;
然后:
const userIndex = this.dataSource.data.findIndex(usr => usr.id === user.id);
console.log('Before change :', this.dataSource.data[userIndex], userIndex);
this.dataSource.data[userIndex] = userEdited;
this.table.renderRows(); // <--- Add this line
console.log('After change :', this.dataSource.data[userIndex], this.dataSource.data);
答案 0 :(得分:1)
您可能需要调用renderRows()函数,请参见https://material.angular.io/components/table/api
如果表的数据源是DataSource或Observable,则将是 每次提供的Observable流发出一个 新数据数组。 否则,如果您的数据是数组,则此函数将 需要调用以呈现任何更改。
/**
* Update an user
* @param user The user to update
*/
update(user: User) {
this.users.edit(user)
.subscribe(
userEdited => {
const userIndex = this.dataSource.data.findIndex(usr => usr.id === user.id);
this.dataSource.data[userIndex] = userEdited;
this.table.renderRows(); // <--- Add this line
}
);
}