Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can you gunzip the contents of a get request in Angular?

I'm fetching some JSON with angular as:

$http({
    url: 'https://www.somemachine.com/getdata', 
    method: "GET",
    params: {}
}).success(function(data, status, headers, config) {
    console.log(data);
}

The data it's receiving is quite large, and I'm happy to gzip the source but is there a way to gunzip it when my $http method fetches it?

like image 333
nickponline Avatar asked Aug 22 '13 20:08

nickponline


1 Answers

Assuming the source is already zipped, just ensure the Accept-Encoding header is set to gzip on the request:

$http.get('https://www.somemachine.com/getdata', { headers: { 'Accept-Encoding': 'gzip' } }
).success(function(data, status, headers, config) {
    console.log(data);
});

The browser will automatically unzip it when it sees the Content-Encoding=gzip header on the response.

like image 145
tdakhla Avatar answered Oct 06 '22 00:10

tdakhla