如何安装 bootstrap 4 + jquery + popper.js 和 Angular 6

How to install bootstrap 4 + jquery + popper.js with Angular 6

我已经安装并更新了 Angular 和 Node 到最新版本

    Angular CLI: 6.0.0
    Node: 8.11.1
    OS: win32 x64
    Angular: 6.0.0
    ... animations, cli, common, compiler, compiler-cli, core, forms
    ... http, language-service, platform-browser
    ... platform-browser-dynamic, router

     Package                                                                   
     -----------------------------------------------------------
    @angular-devkit/architect         0.6.0
    @angular-devkit/build-angular     0.6.0
    @angular-devkit/build-optimizer   0.6.0
    @angular-devkit/core              0.6.0
    @angular-devkit/schematics        0.6.0
    @ngtools/webpack                  6.0.0
    @schematics/angular               0.6.0
    @schematics/update                0.6.0
    rxjs                              6.1.0
    typescript                        2.7.2
    webpack                           4.6.0

已通过 npm 安装 Bootstrap 4,虽然它可以正常工作,但是下拉菜单和模态框不起作用,因为 jquery 和 popper.js 没有像以前那样导入 angular5.

这就是我所做的: 安装了以下 1- npm 安装 bootstrap@next --save 2- npm 安装 jquery --保存 3- npm 安装 popper.js --保存

并将其添加到 angular.json 因为没有 angular.cli.json

     "styles": [   
        "../node_modules/bootstrap/dist/css/bootstrap.min.css",
         "styles.css"
      ],
     "scripts": [  
         "../node_modules/jquery/dist/jquery.min.js",
         "../node_modules/bootstrap/dist/js/bootstrap.min.js",
         "../node_modules/popper.js/dist/umd/popper.min.js"
      ],

别忘了运行:

npm i tether --save

下一步 angular.json 将系链路径放在 jquery 和 bootstrap

之间
"scripts": [
"../node_modules/jquery/dist/jquery.min.js",
"../node_modules/tether/dist/js/tether.min.js",
"../node_modules/bootstrap/dist/js/bootstrap.min.js"]

这就是我用 Angular 9

安装它的方式
npm install --save bootstrap jquery popper.js