1

我是 AMD 的新手。这在 AMD 之前是这样工作的:

angular.module('app')
  .controller('RegisterCtrl', ['$scope', '$location', '$http', '$cookies', '$timeout', 'myConfig', 
  function($scope, $location, $http, $cookies, $timeout, myConfig) {
    this.$cookies = $cookies;
    this.$timeout = $timeout;

    // Retrieving a cookie
    $scope.cookielocation = $cookies.get('Location');

    // Delete a cookie
    $cookies.remove('Location', {path: '/'});             
 }]);

对于 AMD,这是我整理的:app.js:

define(['angularAMD', 'angular-route', 'angular-cookies', 'banner', 'config', 'services', 'nullSP', 'timeAgo'], function (angularAMD) {
  var app = angular.module("app", ['ngRoute', 'ngCookies']);

  app.config(function ($routeProvider, $locationProvider) {
  console.log("Enter route config");
  $routeProvider
  .when("/", angularAMD.route({
    controller: 'HomeCtrl',
    templateUrl: 'partials/welcome.html',
    controllerUrl: 'controller_welcome'
  }))
  .when("/register", angularAMD.route({
    controller: 'RegisterCtrl', 
    templateUrl: 'partials/register.html', 
    controllerUrl: 'controller_register'
  }))
  .when("/dashboard", angularAMD.route({
    controller: 'DashboardCtrl',
    templateUrl: 'partials/dashboard.html',
    controllerUrl: 'controller_dashboard'
  }))
  .otherwise({
    redirectTo: '/'
  });
   $locationProvider.html5Mode(true);
  });
    app.run(function ($browser) {
      $browser.baseHref = function() { return window.location.pathname  };
     });

    return angularAMD.bootstrap(app);
  });

和我的 controller_register.js :

define(['app', 'angular-cookies'], function (app, cookies) {
  app.controller('RegisterCtrl', ['$rootScope', '$scope', '$location', '$http', '$cookies', '$timeout', 'config',
   function($rootScope, $scope, $location, $http, $cookies, $timeout, config) {

   // Retrieving a cookie
   $scope.cookielocation = $cookies.get('Location');

   // Delete a cookie
   $cookies.remove('Location', {path: '/'});              
});

为什么我会收到此错误:

错误:$injector:unpr 未知提供者:$$cookieReaderProvider <- $$cookieReader <- $cookies

我该如何解决?

4

1 回答 1

0

已修复:似乎是 angular.js 和 angular-cookies.js 之间的版本差异

于 2015-12-02T23:35:34.180 回答