1
新しいプロジェクトを作成するときに、より良いファイル構造に分割する角度のあるプロジェクトがありますが、エラーのためにArgument 'fn' is not a function, got undefined
が表示されています。私が間違っていることは何ですか?角モジュールの読み込みエラー
app.js
angular.module('app', [
'app.controllers'
]);
angular.module('app.controllers', ['leaflet-directive', 'app.services']);
angular.module('app.services', []);
main.controller.js
angular.module('app.controllers')
.controller('MainCtrl', MainCtrl);
function MainCtrl($scope, $window, leafletData, DataService) {
var main = this;
main.items = DataService.GetItems();
//Other controller stuff
};
data.service.js
angular.module("app.services")
.factory('DataService', DataService);
var DataService = function(){
return data = {
getItems: function(){
return [//data here];
}
};
}