Angular 2:在Dialog组件中设置@Input变量

Angular 2: Set @Input variables in Dialog Component

根据 Dialog Component 的最新 Angular2-Material 文档。没有关于如何将值传递给对话框组件的描述。是否可以通过组件交互机制实现?除了使用服务。

在正常的组件交互中,我们已经看到我们可以通过这种方式传递值:

<app-child [data]="some_data"></app-child>

@Input data:string;

在评论讨论中找到答案:

this.dialogRef.componentInstance.param1 = "test value";

另请参阅:Working example of Angular 2.0 Material MdDialog with Angular 2.0

plnkr.co/edit/n185tQbEHg1xGlNCAdxQ?p=preview