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?
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With