Angular Dialog - 从子组件访问变量

时间:2017-07-10 20:49:35

标签: dialog parent-child angular-reactive-forms

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

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

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

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

1 个答案:

答案 0 :(得分:0)

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

  

this.dialogRef.componentInstance.variableName