angularjs – 添加ui.bootstrap依赖与bower

前端之家收集整理的这篇文章主要介绍了angularjs – 添加ui.bootstrap依赖与bower前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图添加ui.bootstrap依赖关系到我的角项目(我使用yeoman,bower)。
我这样做:

> yo角
> bower安装angular-ui
>然后我添加到我的index.html文件:和
> grunt服务

然后我添加了ui.bootstrap依赖关系到我的app.js:

angular.module('angularuiprojectApp',[
  'ngCookies','ngResource','ngSanitize','ngRoute','ui.bootstrap'])

当我试图访问我的index.html在Chrome我收到此错误

Uncaught Error: [$injector:modulerr] Failed to instantiate module
angularuiprojectApp due to: Error: [$injector:modulerr] Failed to
instantiate module ui.bootstrap due to: Error: [$injector:nomod]
Module ‘ui.bootstrap’ is not available! You either ……1)

我不知道我在哪里错了,如果有人可以帮助我这个…
谢谢。

您正在从bower安装错误的软件包。正确的安装是bower install angular-bootstrap,如下所述: https://github.com/angular-ui/bootstrap#installation

编辑:

截至2015年2月,图书馆的Bower版本存在于https://github.com/angular-ui/bootstrap-bower

不幸的是,它目前只包含AngularUI Bootstrap 0.12.0,据我所知,它不完全兼容Angular> = 1.3。看起来维护者希望AngularUI Bootstrap> = 0.13.0与Angular 1.3兼容,但是该库的版本似乎还没有到达Bower兼容的仓库。不再是问题,AngularUI Bootstrap 0.13.0版本现在提供和支持

原文链接:https://www.f2er.com/angularjs/146369.html

猜你在找的Angularjs相关文章