如何将jasny-bootstrap导入Angular 4?

时间:2017-10-06 13:00:57

标签: angular jasny-bootstrap

Jasny Bootstrap:

https://github.com/jasny/bootstrap

已安装:npm install jasny-bootstrap --save

导入app/app.module.tsmain.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'.

1 个答案:

答案 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"
]