使用Angularjs ui-bootstrap获取模块注入错误

我想在我的application.js引用中使用
Angularjs Bootstrap UI我在索引页面中包含这些文件:

在我的应用程序app.js包括这一行:

var ap = angular.module('ap', ['ngRoute','ui.bootstrap']).config(negsotimeRouter);

但是在尝试查看页面时出现此错误:

Uncaught Error: [$injector:modulerr] http://errors.angularjs.org/1.2.16/$injector/modulerr?p0=negsotime&p1=Error…arjs.org%2F1.2.16%2F%24injector%2Fmodulerr%3Fp0%3Dui.bootstrap%26p1%3DErro...<omitted>...5) angular.js:36

以下链接
Error Link

最佳答案 您缺少Angular UI Bootstrap脚本本身的脚本引用.您需要下载它并引用它.

例如最新版本:https://github.com/angular-ui/bootstrap/blob/gh-pages/ui-bootstrap-0.6.0.min.js

所有版本:https://github.com/angular-ui/bootstrap/tree/gh-pages

如您所见,角度ui.bootstrap模块在该脚本中定义.

点赞