角材料对话框:是否需要手动销毁零部件?

时间:2020-08-13 09:12:59

标签: angular angular-material material-dialog

我正在使用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();
}

1 个答案:

答案 0 :(得分:0)

AngularMaterial Dialog组件在关闭后不需要手动销毁。

看看官方的Angular材质Dialog Examples