Angular开发准备

前端之家收集整理的这篇文章主要介绍了Angular开发准备前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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

猜你在找的Angularjs相关文章