【发布时间】:2020-11-10 17:53:43
【问题描述】:
有人可以告诉我是否有可能使用 ng-template 有多个 nbDialog 还是我必须使用组件?
任何帮助都会很棒,因为我尝试了各种方法都无济于事,并且在文档上看不到任何内容。
myComponent.ts
openQuestions(dialog: TemplateRef<any>) {
this.dialogService.open(dialog, { context: `data to pass to dialog.` })
}
myTemplate.html
////////页面代码放在这里//////
<ng-template #dialog let-data let-ref="dialogRef"
[formGroup]="addDailyCheckEquipment">
<- form to be added here ->
</ng-template>
【问题讨论】: