从控制器,我调用我的服务Spring“facturationSvc”,它执行一个耗时的处理并返回一个对象列表。
几秒钟后,我收到错误“无法加载资源:服务器响应状态为502(Bad Gateway)”。
我该如何解决?
vm.afficher = function() {
vm.details = [];
var x = vm.applicationField;
if (x === undefined || x === null) {
x = 'off';
}
FacturationSvc.generate({
selectedDt : new Date(vm.selectedDt),
applicationField : x
}).$promise.then(function(resp) {
vm.details = JSON.parse(JSON.stringify(resp));
vm.table.check = true;
});
}
Angularméthod服务:
svc.generate = $resource(svc.url + '/generate/:selectedDt/applicationName/:applicationField', {}, {
'get': {method:'GET', isArray:true, cache: true}
}).get;