AngularJS(eoman生成器)使用ng-boostrap库导入问题

时间:2019-02-22 20:59:38

标签: angularjs ng-bootstrap yeoman-generator-angular

我已经使用yeoman生成器see there

建立了一个有角度的项目
yo angular testapp

我已经使用bower安装ng-boostrap库。

bower install ng-bootstrap 

通常,我将“ .js”文件导入到“ index.html”文件中,然后将模块名称添加到“ app.js”文件中,如下所示:

angular
  .module('testApp', [
    modules names...
  ])

我不知道该如何使用该库(找不到要包含的任何“ .js”)?我已经从ng-bootstrap官方网站和yeoman角度发生器上冲了文档,但我仍然对这个问题感到困惑。

评论或建议深表感谢。

1 个答案:

答案 0 :(得分:0)

可能是因为ng-bootstrap是为Angular(从V2.X开始)构建的,并且基于打字稿(.ts)。

AngularJS(V1.X)基于香草JS(.js)。 听起来您追随的是ui-bootstrap