0

我尝试在我的应用程序中使用 Angular 进行授权。我创建了 app.service 并注入了“Restangular”。我有这个错误

Error: $injector:modulerr Module Error Failed to instantiate module cadastral due to:
Error: $injector:modulerr Module Error Failed to instantiate module Restangular due to:
Error: $injector:nomod Module Unavailable Module 'Restangular' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.

我在我的 html 页面中包含了所有文件

script src="/app/app/core/js/angular.js" type="text/javascript"
scrip src="/app/app/core/js/angular-resource.js" type="text/javascript"
script src="/app/app/core/js/angular-route.js" type="text/javascript"
script src="/app/app/core/js/restangular.js" type="text/javascript"

这是我的应用程序代码

var app = angular.module('cadastral', ["ngRoute","ngResource",'ngCookies',"Restangular"]);
app.controller('authCtrl', function($scope,$http,$routeParams,AuthService,$cookies){
  /**/
});

蚂蚁这是 AuthService:

app.service('AuthService', function($cookies, $http, Restangular) {
/**/
  });

有人可以帮助我吗?什么问题?

4

1 回答 1

0

当您将第三方模块注入您的项目模块时,您应该将模块名称作为参数发送...

在您的情况下,您正在注入Restangular,这不是 restangular 的模块名称,将其更改为restangular,您应该没问题...

Restangular 是其服务的名称而不是模块的名称......

于 2016-09-16T20:06:32.383 回答