我试图在Angular 6中使用ngx-modal,我已经安装了ngx-modal并在App-Module中导入并在其他组件中使用,但是在单击“ showModal”按钮后,背景变灰了,但是模式不显示。 这是代码:
<button (click)="firstModal.open()">modal with custom header content and footer</button>
<modal #firstModal>
<modal-header>
<h1>I am first modal</h1>
</modal-header>
<modal-content>
This modal has its own header, content and footer.
</modal-content>
<modal-footer>
<button class="btn btn-primary" (click)="firstModal.close()">okay!</button>
</modal-footer>
</modal>
并且在检查html页面之后,仅加载了一个类
感谢您的帮助。