2
複数のコントローラからファクトリを呼び出そうとしています。このファクトリはJSONデータを取得します。私はコントローラから直接呼び出すことを試みたときに成功することができます。今、私はファクトリを追加しました。コンソールにエラーはありませんが、何も画面に表示されません。ここでは、コードは次のようになります。AngularJS Controller Factory rest JSON
HTMLテンプレート:
<!-- Schools -->
<div class="row">
<h3 class="text-center">Schools and Associations</h3>
<ul class="gallery gallery1" ng-controller="SchoolsCtrl">
<li ng-repeat="school in schools" class="card">
<a ng-href="{{school.url}}" target="_blank">
<img ng-src="{{school.thumbUrl}}" class="img-responsive">
<p class="text-center">{{school.name}}</p>
<p class="text-center">{{school.time}}</p>
</a>
</li>
</ul>
</div>
controller.js:
var mainApp = angular.module('mainApp', ['bootstrapLightbox', 'ngAnimate']);
mainApp.controller('CompaniesCtrl', function($scope, GalleryService) {
$scope.companies = GalleryService.getObjects('app/common/companies.json');
});
mainApp.controller('WorksCtrl', function($scope, GalleryService) {
$scope.works = GalleryService.getObjects('app/common/freelance-projects.json');
});
mainApp.controller('SchoolsCtrl', function ($scope, GalleryService) {
$scope.schools = GalleryService.getObjects("app/common/schools.json");
});
service.js:
mainApp.factory('GalleryService', function ($http) {
return {
getObjects: function (jsonUrl) {
$http.get(jsonUrl)
.success(function (data) {
return data;
})
.error(function (data, status, error, config) {
return [{heading:"Error", description: "Could not load json data"}];
});
}
}
});
それを聞いて喜んで。ありがとう;) –