Angular 2:在组件类中设置模态

时间:2017-04-11 11:52:23

标签: angular

在我的Angular 2应用程序中,我有:   bla.component.html 和相应的 bla.component.ts

bla.component.html 我有模态:

<div bsModal #myModal="bs-modal" ...></div>

我想将 myModal 设置为 bla.component.ts

...
export class BlaComponent {
   public myModal: ModalDirective;

我不知道该怎么做。

(我实际想要实现的是,我将能够从组件类中关闭模态。)

感谢您的任何建议!

1 个答案:

答案 0 :(得分:0)

我找到了解决方案,只需将 @ViewChild('myModal')添加到组件类中:

...
export class BlaComponent {
   @ViewChild('myModal') public myModal: ModalDirective;