在我的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;
我不知道该怎么做。
(我实际想要实现的是,我将能够从组件类中关闭模态。)
感谢您的任何建议!
答案 0 :(得分:0)
我找到了解决方案,只需将 @ViewChild('myModal')添加到组件类中:
...
export class BlaComponent {
@ViewChild('myModal') public myModal: ModalDirective;