ฉันกำลังส่งคำขอไปยัง API ของฉันและฉันใช้โมดูลทรัพยากร AngularJS $ มันแตกต่างจาก $ 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');
});