次のように角度のあるJSONを取得しています:
$http({
url: 'https://www.somemachine.com/getdata',
method: "GET",
params: {}
}).success(function(data, status, headers, config) {
console.log(data);
}
受信しているデータは非常に大きいので、ソースを gzip で圧縮することはできますが、メソッドがデータを取得するときにそれを gunzip する方法はあり$http
ますか?