如何在 angular 6 项目中添加引导程序?
对于 Angular 版本 11+
配置
angular.json 配置中的样式和脚本选项现在允许直接引用包:
之前:"styles": ["../node_modules/bootstrap/dist/css/bootstrap.css"]
之后:"styles": ["bootstrap/dist/css/bootstrap.css"]
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/ng6",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.app.json",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.css","bootstrap/dist/css/bootstrap.min.css"
],
"scripts": [
"jquery/dist/jquery.min.js",
"bootstrap/dist/js/bootstrap.min.js"
]
},
Angular 10 及以下版本
您使用的是 Angular v6 而不是 2Angular v6 以后
angular 6 及更高版本的 CLI 项目将使用 angular.json
而不是.angular-cli.json
用于构建和项目配置。
每个 CLI 工作区都有项目,每个项目都有目标,每个目标都可以有配置。文档
. {
"projects": {
"my-project-name": {
"projectType": "application",
"architect": {
"build": {
"configurations": {
"production": {},
"demo": {},
"staging": {},
}
},
"serve": {},
"extract-i18n": {},
"test": {},
}
},
"my-project-name-e2e": {}
},
}
OPTION-1
执行npm install bootstrap@4 jquery --save
的 JavaScript 部分Bootstrap
依赖于jQuery
. 所以你也需要jQuery
JavaScript
库文件。
在您的 angular.json 中,将文件路径添加到build
目标下的样式和脚本数组
注意:
在 v6 之前,Angular CLI 项目配置存储在<PATH_TO_PROJECT>/.angular-cli.json.
v6 中,文件的位置更改为angular.json.
由于不再有前导点,文件不再默认隐藏并且处于同一级别。
这也意味着 angular.json 中的文件路径不应包含前导点和斜线
即您可以提供绝对路径而不是相对路径
在.angular-cli.json
文件路径是"../node_modules/"
在angular.json
它是"node_modules/"
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/ng6",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.app.json",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.css","node_modules/bootstrap/dist/css/bootstrap.min.css"
],
"scripts": ["node_modules/jquery/dist/jquery.min.js",
"node_modules/bootstrap/dist/js/bootstrap.min.js"]
},
选项 2
将文件从 CDN(内容交付网络)添加到您的项目CDN LINK
打开文件 src/index.html 并插入
的<link>
在头部的端部元件包括自举CSS文件
一个<script>
元件以包括jQuery的在主体部分的底部
一个<script>
包括Popper.js在主体部分的底部元件
一个<script>
元件以包括引导JavaScript文件在身体部分的底部
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Angular</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<app-root>Loading...</app-root>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>
选项 3
执行npm install bootstrap
在src/styles.css
添加以下行:
@import "~bootstrap/dist/css/bootstrap.css";
OPTION-4
ng-bootstrap它包含一组基于 Bootstrap 标记和 CSS 的原生 Angular 指令。因此,它不依赖于 jQuery 或 Bootstrap 的 JavaScript
npm install --save @ng-bootstrap/ng-bootstrap
安装后将其导入根module并在@NgModule
导入数组中注册
import {NgbModule} from '@ng-bootstrap/ng-bootstrap';
@NgModule({
declarations: [AppComponent, ...],
imports: [NgbModule.forRoot(), ...],
bootstrap: [AppComponent]
})
NOTE
ng-bootstrap
需要在您的项目中添加 Bootstrap 的 4 css。您需要通过以下方式显式安装它:
npm install bootstrap@4 --save
在您的 angular.json 中,将文件路径添加到build
目标下的样式数组
"styles": [
"src/styles.css",
"node_modules/bootstrap/dist/css/bootstrap.min.css"
],
PS 重启你的服务器
`ng 服务 || npm start`😉npm install --save bootstrap
之后,在项目的根文件夹中angular.json
(以前.angular-cli.json
),找到样式并添加引导 css 文件,如下所示:
对于角 6
"styles": [
"../node_modules/bootstrap/dist/css/bootstrap.min.css",
"styles.css"
],
角 7
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/styles.css"
],
npm install bootstrap --save
并增加培训相关文件到angular.json
文件的下style
财产的CSS文件,并根据scripts
对JS文件。
"styles": [
"../node_modules/bootstrap/dist/css/bootstrap.min.css",
....
]
使用命令
npm install bootstrap --save
打开.angular.json 旧(.angular-cli.json)文件找到“样式”添加引导 css 文件
"styles": [
"src/styles.scss",
"node_modules/bootstrap/dist/css/bootstrap.min.css"
],