如何将有角度的UI Bootstrap注入到打字稿中的角度模块

时间:2015-07-03 13:20:09

标签: javascript angularjs twitter-bootstrap typescript

我想使用typescript将角度ui引导注入角度模块。

这是我的代码:

 /// <reference path="../Scripts/typings/angularjs/angular.d.ts"/>
/// <reference path="../scripts/typings/angular-ui-bootstrap/angular-ui-bootstrap.d.ts" />
angular.module("ReviewApp", ["ui.bootstrap" , angular.ui.bootstrap ]);

我正在使用DefinitelyTyped

的库

1 个答案:

答案 0 :(得分:1)

对模块的引用不正确

更改

angular.module("ReviewApp", ["ui.bootstrap" , angular.ui.bootstrap ]);

angular.module("ReviewApp", ["ui.bootstrap"]);

并确保在标记中有一个脚本标记引用ui.bootstrap。