cmd,进入项目文件下
1、安装jquery
npm install jquery --save。
--save
安装的同时,将信息写入package.json中
2、安装bootstrap
npm install
bootstrap
--save。
3、在.angular-cli.json中添加 jquery和bootstrap的引用
在styles节点和scripts节点下加入。
"styles"
: [
"styles.css"
,
"../node_modules/bootstrapdist/css/bootstrap.css"
],122)">"scripts"
"../node_modules/jquery/dist/jquery.js"
"../node_modules/bootstrap/dist/js/bootstrap.js"
在项目中使用还需要:
4、安装jquery的类型定义文件(*.d.ts)
npm install @types/jquery --save-dev。
5、安装bootstrap的类型定义文件(*.d.ts)
npm install @types/bootstrap --save-dev。
原文链接:https://www.f2er.com/angularjs/147075.html