AngularJS Module' ngCookies'不可用MEAN堆栈

时间:2016-02-12 04:13:23

标签: angularjs cookies mean-stack

我已经看了几个类似的问题,但大多数问题都与Angular加载AFTER角度曲奇有关,在我的情况下这不是真的,我一直在关注使用MEAN堆栈创建AngularCMS的教程(查看网站Building a CMS in the MEAN stack)。

我刚刚在管理员级别完成了包含会话身份验证Cookie的部分。我遇到的问题是标题说明,我在加载登录页面时遇到错误,说ngCookies不可用。我已经通过bower安装了angular-cookies,它要求我包含1.5.0的角度,因为它是一个依赖。

我试过在我的index.html上调用angular脚本但是我得到一个额外的错误,说我试图加载Angular两次。

我的相关代码如下:

app.js

angular.module('myApp', [
  'ngRoute',
  'myApp.filters',
  'myApp.services',
  'myApp.directives',
  'myApp.controllers',
  'ngCookies'
]).

的index.html

    <script src="js/filters.js"></script>
    <script src="js/directives.js"></script>
    <script src="bower_components/angular-cookies/angular-cookies.js"></script>
</body>

请帮助

1 个答案:

答案 0 :(得分:0)

我发现我安装了错误版本的角饼干,noob注意:请务必检查您的版本!!