我想在重新装入表之前抛出一个this.messageDialogService.show('Success',true),为一条消息干杯。
.subscribe(
// reload table
() => this.realoadTable() ,
// handle error
() => this.messageDialogService.show('Failed', true)
);
发布于 2020-07-09 02:28:10
这就是你要找的吗?
.subscribe(
// reload table
() => {
this.realoadTable();
this.messageDialogService.show('Success', true);
},
// handle error
() => this.messageDialogService.show('Failed', true)
);
https://stackoverflow.com/questions/62801221
复制相似问题