我用的是角度9,这是我的舞台。我正在使用一个叫做
mdbootstrap
modals
以下列方式
template component
:
<button type="button" mdbBtn color="default" rounded="true" data-toggle="modal" data-
(click)="frame.show()" mdbWavesEffect>Launch Modal</button>
<!-- click on the button, opens my modal-->!
<div mdbModal #frame="mdbModal" class="modal fade top" id="frameModalTop" tabindex="-1" role="dialog">
....
</div>
我可以按一下按钮打开模式
(click)="frame.show()"
@ViewChild("frame") frame: any
.
.
.
this.frame.show();
所以我创建了一个名为
mymodalComponent
使用此选择器:
<mymodal>
与前面的内容:
<mymodal #modal></mymodal>
<mymodal #modal></mymodal>
:
<div mdbModal #frame="mdbModal" class="modal fade top" id="frameModalTop" tabindex="-1" role="dialog">
....
</div>
我有一个提供者:
@Injectable()
export class ServicesProvider implements AfterViewInit {
@ViewChild("modal") modal: any;
constructor(){
}
openModal(){
this.modal.frame.show();
}
}
我的想法是当我执行
openModal()
功能,我会把
<mymodal #modal> </mymodal>
在模板中
app.component.html
,但这一行的功能
显示为
undefined
.
this.modal.frame.show(); //this.modal is undefined
我该怎么修?
servicesProvider.openModal()
在组件中调用时,我的模态将打开
总而言之
我已经把
<mymodal#modal></mymodal>
在里面
应用程序组件.html
(我不知道这是不是最好的方法)然后
app.module.ts
我已经在报关单上进口了。
当我从提供者调用函数时,我只想:
服务提供商.openModal()
,生成了模态,但我不知道如何调用
frame.show()
从供应商那里,
this.modal
在里面
servicesProvider
是
未定义