如何修复“无法加载资源:服务器响应状态为502(错误网关)”

时间:2017-05-26 12:24:44

标签: angularjs spring spring-mvc

从控制器,我调用我的服务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;

0 个答案:

没有答案