场景:
> ChildComponent – 拥有大量ngModel绑定元素. ;
> ParentComponent – btn.onClick = function(){this.bsModalRef =
this.modalService.open(ChildComponent,TryToPassDataModel);}
这适用于ngx-bootstrap,但是如何在nb-bootstrap中实现呢? (看起来这么简单)
解决方法
看起来你没有正确使用API.该插件希望params作为@Input()传递.像这样的东西会起作用:
const modalRef = this.modalService.open(NgbdModalContent); modalRef.componentInstance.name = 'World';
确保在ModalContent组件中为模型添加@Input!
有关详细信息,请参阅doc:https://ng-bootstrap.github.io/#/components/modal/examples