diff --git a/src/ng/http.js b/src/ng/http.js index 5adb4bef306a..47d51efdfdb0 100644 --- a/src/ng/http.js +++ b/src/ng/http.js @@ -770,9 +770,12 @@ function $HttpProvider() { function transformResponse(response) { // make a copy since the response must be cacheable - var resp = extend({}, response, { - data: transformData(response.data, response.headers, config.transformResponse) - }); + var resp = extend({}, response); + if(config.method === 'HEAD'){ + resp.data = response.data; + } else { + resp.data = transformData(response.data, response.headers, config.transformResponse); + } return (isSuccess(response.status)) ? resp : $q.reject(resp); diff --git a/test/ng/httpSpec.js b/test/ng/httpSpec.js index 8fca3c84fcdc..d93c97ab2437 100644 --- a/test/ng/httpSpec.js +++ b/test/ng/httpSpec.js @@ -1074,6 +1074,17 @@ describe('$http', function() { }); + it('should deserialize json empty string when response header contains application/json', + function() { + $httpBackend.expect('GET', '/url').respond('""', {'Content-Type': 'application/json'}); + $http({method: 'GET', url: '/url'}).success(callback); + $httpBackend.flush(); + + expect(callback).toHaveBeenCalledOnce(); + expect(callback.mostRecentCall.args[0]).toEqual(''); + }); + + it('should deserialize json with security prefix', function() { $httpBackend.expect('GET', '/url').respond(')]}\',\n[1, "abc", {"foo":"bar"}]'); $http({method: 'GET', url: '/url'}).success(callback); @@ -1094,6 +1105,18 @@ describe('$http', function() { }); + it('should not attempt to deserialize json when HEAD request', function(){ + //per http spec for Content-Type, HEAD request should return a Content-Type header + //set to what the content type would have been if a get was sent + $httpBackend.expect('HEAD', '/url').respond('', {'Content-Type': 'application/json'}); + $http({method: 'HEAD', url: '/url'}).success(callback); + $httpBackend.flush(); + + expect(callback).toHaveBeenCalledOnce(); + expect(callback.mostRecentCall.args[0]).toEqual(''); + }); + + it('should not deserialize tpl beginning with ng expression', function() { $httpBackend.expect('GET', '/url').respond('{{some}}'); $http.get('/url').success(callback);