Got a simplified $resource
example here (adapted from Angular site):
angular.module('project', ['mongolab']);
function ListCtrl($scope, Project) {
$scope.projects = Project.test();
}
angular.module('mongolab', ['ngResource']).
factory('Project', function ($resource) {
var url, dfParams, actions;
url = '' + '/angularjs/collections/projects/:id';
dfParams = {
apiKey: '4f847ad3e4b08a2eed5f3b54'
};
actions = {
test: {
method: 'GET',
isArray: true,
transformResponse: function (response) {
// line is never getting called
console.log('transforming');
return response;
}
};
var Project = $resource(url, dfParams, actions);
return Project;
});
The question is that the line console.log('transforming')
is never getting called. Why is that? Everything else works fine.
Live fiddle here.
Got a simplified $resource
example here (adapted from Angular site):
angular.module('project', ['mongolab']);
function ListCtrl($scope, Project) {
$scope.projects = Project.test();
}
angular.module('mongolab', ['ngResource']).
factory('Project', function ($resource) {
var url, dfParams, actions;
url = 'https://api.mongolab./api/1/databases' + '/angularjs/collections/projects/:id';
dfParams = {
apiKey: '4f847ad3e4b08a2eed5f3b54'
};
actions = {
test: {
method: 'GET',
isArray: true,
transformResponse: function (response) {
// line is never getting called
console.log('transforming');
return response;
}
};
var Project = $resource(url, dfParams, actions);
return Project;
});
The question is that the line console.log('transforming')
is never getting called. Why is that? Everything else works fine.
Live fiddle here.
Share Improve this question edited Dec 17, 2013 at 16:31 joragupra 6921 gold badge12 silver badges23 bronze badges asked Mar 16, 2013 at 22:21 Caio CunhaCaio Cunha 23.4k6 gold badges80 silver badges74 bronze badges3 Answers
Reset to default 10This functionality is only available in the 1.1.2 or later versions of AngularJs. It is not available in the 1.1.1 or earlier versions of AngularJs.
Response transformation callback is not exposed in $resource service. It lives inside the underlying $http service.
So you have two choices:
- Use "low-level" $http instead of $resource abstraction,
- Create some kind of wrapper around your resource, which would transform the response the way you want.
I have the same issue,and I use AngularJS 1.2.26.
I have defined a interceptor that contains a transformResponse
of $http level like:
return {
'request': function (config) {
config.defaults.transformResponse = function(data){
//some has been done
};
return config;
},
when I DELETE the code above, my transformResponse
in $resource worked!
In order to solve this problem,I defined my transformResponse
in $resource like:
return $resource(pathConfig.serverURL + ':demoId',
{
demoId: "@id"
},
{
hello: {
method: "GET",
url: serverDomain + ":demoId",
transformResponse: addTransformResponses(
[
function (data, getHeaders) {
//doing hello's OWN interceptors
}
])
}
});
and addTransformResponses
contains mon interceptor like:
addTransformResponses: function (addTrans) {
return [this.parseResponseJson, this.parseResponseArray]
.concat(addTrans);
},
//parse JSON
parseResponseJson: function (data, getHeaders) {
try {
return angular.fromJson(data);
} catch (e) {
console && console.error("return data is not a JSON!");
return data;
}
},
parseResponseArray: function (data, getHeaders) {
if (angular.isArray(data)) {
return {"array": data};
}
return data;
}
by doing this, you can configure mon interceptors and some request's own interceptors well! :)
If any practice better,please tell me! thanks!