如何将数据传递给Angular ng-bootstrap模式进行绑定

前端之家收集整理的这篇文章主要介绍了如何将数据传递给Angular ng-bootstrap模式进行绑定前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
场景:

> 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

猜你在找的Angularjs相关文章