查看我在整个项目中的模块中使用的angular-app项目。.all()
.config()
angular.module('projects', ['resources.projects', 'productbacklog', 'sprints', 'security.authorization'])
.config(['$routeProvider', 'securityAuthorizationProvider', function ($routeProvider, securityAuthorizationProvider) {
$routeProvider.when('/projects', {
templateUrl:'projects/projects-list.tpl.html',
controller:'ProjectsViewCtrl',
resolve:{
projects:['Projects', function (Projects) {
//What does this do?
return Projects.all();
}],
authenticatedUser: securityAuthorizationProvider.requireAuthenticatedUser
}
});
}])
这是该来源的直接链接。
这种技术的用途是什么.all()
,一般有什么作用?