我如何在 Angular 6 项目中使用 bootstrap4 弹出窗口和模式

How can i use bootstrap4 pop ups and modals in Angular 6 Project

Angular.json

"styles": [        
      "./node_modules/bootstrap/dist/css/bootstrap.min.css",
                        "./node_modules/ngx-bootstrap/datepicker/bs-datepicker.css",
                        "src/styles.css"
                    ],
                    "scripts": ["../node_modules/jquery/dist/jquery.js",
                        "../node_modules/tether/dist/js/tether.js",
                        "../node_modules/bootstrap/dist/js/bootstrap.js"
                    ],

我想在我的 angular 项目中使用 bootstrap 模态,但我无法这样做,即使我 npm 所有模块并在 angular.json 文件中导入它们但是Bootstrap 模型不工作。

Component.html

中的模态代码
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
Launch demo modal
 </button>

<!-- Modal-->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
     <div class="modal-dialog" role="document">
       <div class="modal-content">
        <div class="modal-header">
            <h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
            <button type="button" class="close" data-dismiss="modal" aria-label="Close">
        <span aria-hidden="true">&times;</span>
    </button>
        </div>
        <div class="modal-body">
            ...
        </div>
        <div class="modal-footer">
            <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
            <button type="button" class="btn btn-primary">Save changes</button>
        </div>
    </div>
</div>

我建议使用 ng-bootstrap 他们有 Modal。 单击此处获取安装说明。 这里举例Modal