根据Dialog Component 的最新Angular2-Material文档。没有关于如何将值传递给对话框组件的说明。是否可以通过组件交互机制实现?除了使用服务。
在正常的组件交互中,我们看到我们可以通过这种方式传递值:
<app-child [data]="some_data"></app-child>
@Input data:string;
答案 0 :(得分:0)
在评论讨论中找到答案:
this.dialogRef.componentInstance.param1 =“test value”;
另请参阅:Working example of Angular 2.0 Material MdDialog with Angular 2.0