要解决Angular Material对话框无法关闭的问题,可以使用以下方法:
import { MatDialogModule, MatDialog } from '@angular/material/dialog';
constructor(public dialog: MatDialog) {}
dialogRef: MatDialogRef;
openDialog() {
this.dialogRef = this.dialog.open(DialogComponent, {
width: '250px',
data: { name: 'John', age: 30 }
});
this.dialogRef.afterClosed().subscribe(result => {
console.log('Dialog closed: ', result);
});
}
@Component({
selector: 'app-dialog',
templateUrl: 'dialog.component.html',
})
export class DialogComponent {
constructor(public dialogRef: MatDialogRef,
@Inject(MAT_DIALOG_DATA) public data: DialogData) {}
onNoClick(): void {
this.dialogRef.close();
}
}
通过以上步骤,你应该能够成功关闭Angular Material对话框。如果问题仍然存在,可以通过调试代码来查找具体的问题所在。