@ViewChild('modal') modalRef
show(){
//see that using ViewChildren you use nativeElement
const modal=new Modal(this.modalRef.nativeElement);
modal.show();
}
由于您的孩子具有模态,请在孩子中使用模板引用变量(例如。 #modal )所以你可以做父母
<button type="button" (click)="show(child.modal)">
Launch demo modal
</button>
<child #child></child>
//in this case we need use "nativElement"
show(modalRef){
const modal=new Modal(modalRef.nativeElement);
modal.show();
}
1条答案
按热度按时间hmae6n7t1#
此外,要安装引导,请安装@types/bootstrap
然后,您可以使用typescript控制模态。例如
和in.ts
或者使用viewchild
由于您的孩子具有模态,请在孩子中使用模板引用变量(例如。
#modal
)所以你可以做父母lightning 战