Can you gunzip the contents of a get request in An

2019-04-24 02:27发布

问题:

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?

回答1:

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.