有人知道为什么Javascript .catch方法导致使用Spring Tool Suite (Eclipse)的语法错误吗?这段代码是名为JHipster的搭建应用程序的一部分。这个错误很可能是一些Javascript版本或配置问题。新的Javascript (EC…什么的)规范?
的例子:
angular.module('blackholeApp')
.controller('ActivationController', function ($scope, $stateParams, Auth) {
Auth.activateAccount({key: $stateParams.key}).then(function () {
$scope.error = null;
$scope.success = 'OK';
}).catch(function () {
$scope.success = null;
$scope.error = 'ERROR';
});
});
我更新到JHipster 3.5.1, Javascript的问题消失了。