javascript - $resource transformResponse not working - Stack Overflow

Got a simplified $resource example here (adapted from Angular site):angular.module('project',

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 badges
Add a ment  | 

3 Answers 3

Reset to default 10

This 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!

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743654479a4485134.html

相关推荐

  • javascript - $resource transformResponse not working - Stack Overflow

    Got a simplified $resource example here (adapted from Angular site):angular.module('project',

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信