Я получаю данные всегда неопределенными в ngOnInit (this.config.data = undefined).Это мой код:
constructor(public ref: DynamicDialogRef, public config: DynamicDialogConfig) {
}
ngOnInit() {
console.log(this.config.header);
this.root = this.config.data.template.root;
}
И я открываю диалоговое окно, используя:
let myData = {
"template": this.template
};
const ref = this.dialogService.open(TreeReportComponent,
{
data : myData,
header: 'Test',
width: '70%',
contentStyle: {"max-height": "350px", "overflow": "auto"}
});
Я не смог найти ничего с Google.Может быть, вы можете помочь мне найти мою ошибку.Заранее спасибо.