我已将我的 Angular 应用程序编写到单独的文件中,以提高可读性和轻松查找要编辑/编码的内容的方法。这是我的 app.js 需要依赖项。
应用程序.js
var app = angular.module('app', ['ngResource', 'ngRoute', 'app.services', 'app.controllers', 'app.feed','app.directives', 'app.factories']);
app.config(['$routeProvider', '$locationProvider', function($routeProvider, $locationProvider) {
...
}]);
这是如何写出依赖项的示例。
服务.js
var app = angular.module('app.services', []);
app.factory('AuthService', ['$scope'], function($scope) {
...
}]);
但是,当我尝试连接脚本时,应用程序会不断重新定义。我想取出 var 声明,但我喜欢将文件分开。
我怎么能写出我的 app.js 的依赖注入保持不变,同时仍然保持文件分开。