You can close modal1 before opening modal2 in your ts file. For example:
openModal2(template: TemplateRef<any>) {
this.modalRef.hide();
this.modalRef2 = this.modalService.show(template, {
animated: true,
backdrop: "static"
});
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…