내 API에 요청을 보내고 AngularJS $ resource 모듈을 사용하고 있습니다. $ http와 다르기 때문에 오류를 처리하는 방법을 모르겠습니다.
내 서비스 :
var appServices = angular.module('app.services', ['ngResource']);
appServices.factory('Category', ['$resource',
function($resource){
return $resource('/apicategoryerr/?format=:format', {}, {
query: {
method: 'GET',
params: { format: 'json'},
isArray: true,
}
});
}]);
내 컨트롤러 :
...
Category.query(function(data) {
console.log(data);
});
...
나는 이것과 같은 것을 원한다 .. 내 API가 작동하지 않으면 오류를 처리하는 방법을 모르겠다 ..
Category.query().success(function() {
console.log('success');
}).error(function() {
console.log('error');
});