我有一个对话子组件DeleteAssociationDialog,其中包含一个openDeleteAssociationDialog方法:
删除关联-dialog.component.ts
import { Component } from '@angular/core';
import { MatDialog, MatDialogRef } from '@angular/material';
@Component({
selector: 'app-delete-association-dialog',
templateUrl: 'delete-association-dialog.component.html',
styleUrls: ['delete-association-dialog.component.css']
})
export class DeleteAssociationDialogComponent {
constructor(
public dialog: MatDialog,
public dialogRef: MatDialogRef<DeleteAssociationDialogComponent>) { }
openDeleteAssociationDialog(): void {
let dialogRef = this.dialog.open(DeleteAssociationDialogComponent, {
width: '250px'
});
dialogRef.afterClosed().subscribe(result => {
console.log('The dialog was closed');
});
}
}
单击父组件(app.component)HTML中的按钮时,应显示该对话框,我正在使用@ViewChild建立引用:
app.component.html [片段]
<button mat-icon-button color="warn" (click)="child.openDeleteAssociationDialog()">
<mat-icon>delete</mat-icon>
</button>
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { MatButtonModule } from '@angular/material/button';
import { MatInputModule } from '@angular/material';
import { FormsModule } from '@angular/forms';
import { MatDialogModule } from '@angular/material';
import { AppComponent } from './app.component';
import { DeleteAssociationDialogComponent } from './delete-association-dialog/delete-association-dialog.component';
import { MatDialogRef} from '@angular/material/dialog'
@NgModule({
declarations: [
AppComponent,
DeleteAssociationDialogComponent,
],
entryComponents: [DeleteAssociationDialogComponent],
imports: [
BrowserModule,
NgModule,
BrowserAnimationsModule,
MatButtonModule,
MatInputModule,
FormsModule
MatDialogModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
app.component.ts
import { Component, ViewChild } from '@angular/core';
import { MatDialog, MatDialogRef } from '@angular/material';
import { DeleteAssociationDialogComponent } from './delete-association-dialog/delete-association-dialog.component';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css', './app.component.panel.css']
})
export class AppComponent {
@ViewChild('DeleteAssociationDialogComponent') child: DeleteAssociationDialogComponent;
}
收到错误 - &#34; ERROR TypeError:无法读取属性&#39; openDeleteAssociationDialog&#39;未定义&#34;
我错过了什么?如何从父组件HTML模板中正确引用子组件方法?
答案 0 :(得分:2)
我认为问题源于打开对话框的方法包含在对话框本身中。因此,除非对话框已经打开,否则该方法将不存在...对话框组件既是鸡又鸡蛋。
解决方案是将方法移至openDeleteAssociationDialogComponent
父母。
然后很简单:
<button (click)="openDeleteAssociationDialogComponent()"></button>
如果您想将其抽象出来以使对话框打开按钮可重复使用,您可以执行以下操作:
component.html
<association-deleter></association-deleter>
<强> component.ts 强>
@Component({
selector: 'association-deleter',
template: `<button (click)="openDialog()"></button>`
})
export class DeleteAssociationComponent {
constructor(
public dialog: MatDialog,
public dialogRef: MatDialogRef<DeleteAssociationDialogComponent>
){}
openDeleteAssociationDialog(): void {
let dialogRef = this.dialog.open(DeleteAssociationDialogComponent, {
width: '250px'
});
dialogRef.afterClosed().subscribe(result => {
console.log('The dialog was closed');
});
}
}
然后您可以重复使用按钮打开删除关联对话框。