我发现了这个:https://github.com/shlomiassaf/angular2-modal但是没有用于调度它的组件。
答案 0 :(得分:2)
通过使用https://ng-bootstrap.github.io/#/components/modal中的NgbModal
服务,您可以非常轻松地打开内容来自组件的对话框(模态)。方法如下:
modalService.open(YourComponentToShowAsDialog);
是的,就是这样:-)只需记住将YourComponentToShowAsDialog
添加到模块的entryComponents
部分。
最后,这里有一位资深人士展示了它如何在实践中发挥作用:http://plnkr.co/edit/XzUbRiBfqSKmmOYhZtPJ?p=preview