我正在使用MdDialogModule来显示一个带有输入字段的Dialog窗口。 Modal打开正常,我可以在输入字段中输入文本并提交,但是点击提交按钮,我希望输入表单中的数据返回到调用Dialog组件的主组件,并关闭对话框
我该怎么做?我能够将数据传递给MdDialog组件,但没有找到任何关于如何从MdDialogComponent将数据返回到组件的资源。
我的Dialog组件代码如下所示
import { Component, OnInit, InjectionToken, Inject } from '@angular/core';
import { MD_DIALOG_DATA, MdDialogRef } from "@angular/material";
@Component({
selector: 'app-add-book',
templateUrl: './add-book.component.html',
styleUrls: ['./add-book.component.css']
})
export class AddBookComponent {
constructor() { }
}
调用对话框的主要组件中的方法如下所示。现在没有返回任何响应,它返回Undefined,因为我还没有想出来。
openCreateDialog() {
let dialogRef = this.dialog.open(AddBookComponent)
.afterClosed()
.subscribe(response => {
console.log(response);
});
}
答案 0 :(得分:1)
首先感谢哈利的评论...
下面是整个相关脚本
组件ts:
let dialogRef = this.dialog.open(DataListDialogComponent, dialogConfig).afterClosed()
.subscribe(response => {
console.log(response);
});
对话:
this.dialogRef.close({data:'data'});
答案 1 :(得分:0)
“ dialog.open”可用于打开对话框组件。
您可以通过添加第二个参数来指定要发送到对话框组件的数据。其中可以包含宽度和高度检查文档之类的信息。
要关闭您可以使用ref.close()。
如果希望从对话框中获取数据,则可以使用ref.componentInstance.updatedSelectedArms,这是在需要时触发的事件
var ref = this.dialog.open(SelectLoadingArmComponent, {
width: '500px',
data: {
loadingArms: this.loadingArms,
selectedloadingArms: this.selectedloadingArms
}
});
ref.componentInstance.updatedSelectedArms.subscribe(
(data) => {
console.log(data)
ref.close()
}
);
答案 2 :(得分:0)
它将对Link有所帮助,并以您自己的方式尝试。非常简单。