AngularJS: ngResource로 성공 및 오류 콜백을 처리하는 방법? 그 문서들은 그것에 대해 어떠한 생각도 주지 않습니다. 나의RESTenpoint에서 오류가 발생할 수 있음 $scope.delete = function(index) { Transaction.delete({transactionId: $scope.transactions[index].uuid}) }; 위의 내용을 다음과 같이 변경하였습니다. $scope.delete = function(index) { Transaction.delete({transactionId: $scope.transactions[index].uuid}) .success('transaction deleted'); }; 하지만 실패합니다. TypeError: Obje..