我用angular 2移动我的第一步,特别是我使用angular-cli官方工具来创建新项目.
原文链接:https://www.f2er.com/angularjs/142338.html我以这种方式创建了一个新项目
ng new [my-project-name]
该项目已正确创建.
之后我想安装bootstrap 4,然后按照angular-cli页面中的官方指南进行操作.
我用npm安装bootstrap:
npm install bootstrap@next
我在angular-cli.json中添加了这一行:
"scripts": [ "../node_modules/jquery/dist/jquery.js","../node_modules/tether/dist/js/tether.js","../node_modules/bootstrap/dist/js/bootstrap.js" ],"styles": [ "styles.css","../node_modules/bootstrap/dist/css/bootstrap.css" ],
在app对象中.
当我构建应用程序并在服务器中使用:ng serve运行它
我没有在index.html中找到bootstrap css和javascript的参考.