Jasny Bootstrap:
https://github.com/jasny/bootstrap
已安装:npm install jasny-bootstrap --save
导入app/app.module.ts
或main.ts
import * as jasny from 'jasny-bootstrap';
我收到了这个错误:
ERROR in /Users/Roller/Working/Angular4/src/app/app.module.ts (11,24): Cannot find module 'jasny-bootstrap'.
答案 0 :(得分:1)
jasny-bootstrap
不是Angular模块,它只是javascript库。如果使用angular-cli,则可以在.angular-cli.json
文件中包含此脚本。这就是你这样做的方式:
"scripts": [
"../node_modules/jquery/dist/jquery.min.js",
"../node_modules/bootstrap/dist/js/bootstrap.min.js"
]
与css文件相同:
"styles": [
"../node_modules/bootstrap/dist/js/bootstrap.min.css"
]