24

我正在实现material2的对话框组件并遇到了这个问题:

我想为所有确认类型的消息创建一个通用对话框,开发人员可以根据业务需求将文本输入到对话框中。但根据文档,没有这样的规定。我们是否有相同的解决方法,或者我应该将其作为功能请求发布在 github 上?

export class ConfirmationDialogComponent implements OnInit {
  @Input() confirmationText: string;
  @Input() confirmationTitle: string;
  @Input() confirmationActions: [string, string][] = [];

  constructor(public dialogRef: MdDialogRef<ConfirmationDialogComponent>) {}

  ngOnInit() {}
}

像这样调用:

let dialogRef = this.dialog.open(ConfirmationDialogComponent);
4

1 回答 1

40

open 会给你组件实例,意味着你可以像这样注入你想要的东西:

openDialog() {
    let dialogRef = this.dialog.open(DialogOverviewExampleDialog);
    let instance = dialogRef.componentInstance;
    instance.text = "This text can be used inside DialogOverviewExampleDialog template ";
    console.log('dialogRef',dialogRef);
  }

然后显然在 DialogOverviewExampleDialog 模板中您可以执行以下操作:

   this is the text {{text }}

普朗克

我通常会做什么,我会创建一个我的组件理解的配置对象,然后我会在打开模式时传递它:

 private config = {
    title :"Hello there ",
    text :"What else ? "
 };

 openDialog() {
    let dialogRef = this.dialog.open(DialogOverviewExampleDialog);
    let instance = dialogRef.componentInstance;
    instance.config = this.config;
    console.log('dialogRef',dialogRef);
  }

然后在模态组件内部:

<div class="my-modal">
   <h1>{{config.title}}</h1>
   <p>{{config.text}}</p>
</div>
于 2016-12-28T07:55:54.137 回答