如何在 angular 7 中的页面加载时打开 ng-bootstrap 模态弹出窗口?

How to open ng-bootstrap modal popup on pageload in angular 7?

我无法在 angular 7 中的页面加载时显示 ng-bootstrap 模式弹出窗口。

我试过下面的代码打开它。

openVerticallyCentered(content) {

this.modalService.open(content, { centered: true });.
this.modalService.open(content, { beforeDismiss: false });

}

您应该使用 ViewChild 装饰器在 init 上访问内容。

此处演示。 https://stackblitz.com/edit/angular-rd8tny?embed=1&file=app/modal-basic.ts