我正在使用Angular Material对话框,想知道在关闭组件后是否需要销毁它。
openUpdateStatusDialog(alertId: string): void {
this.dialog.open(UpdateStatusDialogComponent, {
data: alertId,
panelClass: 'ion-dialog'
}).afterClosed()
.pipe(
map((result) => {
if (result) {
this.updateNotificationStatus.emit(result);
}
}),
untilDestroyed(this))
.subscribe();
}