0

我有一个组件,它具有打开另一个组件的对话框的功能:

open() {
        this.dialogRef = this.dialog.open(ChildComponent);

        this.dialogRef.afterClosed().subscribe(result => {
            this.dialogRef = null;
        });
    }

从这个父组件,我想从 ChildComponent 访问一个变量。我怎样才能做到这一点?

4

1 回答 1

0

您可以使用 componentInstance 字段访问智利对话框组件的变量。例如

this.dialogRef.componentInstance.variableName

于 2017-11-01T11:33:23.480 回答