<div class="row-4">
<button (click)="open(content)">Open modal</button>
<ng-template #content>
<p>HI</p>
</ng-template>
</div>
open(template: TemplateRef<any>) {
this.modalRef = this.modalService.show(template, { class: 'modal-sm' });
}
显示模式1秒钟后,它将我重定向到另一个视图。