java で安らかなサービスを作成し、angularjs から呼び出しましたが、機能していません。静的json形式を配置すると、その作品。しかし、RESTful サービスでは機能しません。以下は、サービスファイルの私のコードです。
angular.module('intelesant.services', [])
.value('version', '0.1')
.service('customers1',function(){
return $resource('http://api.geonames.org/citiesJSON?north=44.1&south=-9.9&east=-22.4&west=55.2&lang=de&username=demo', {}, {
query: { method: 'GET', isArray: true },
create: { method: 'POST' }
})
});
私のコントローラーファイルは
intelesant.controller('HomeController', ['$scope','customers1', function(s,customers) {
alert(JSON.stringify(customers));
s.homeContent = 'Test Content for Home page. This can come from server via REST service.';
}]);