我正在获取一些带有角度的JSON:
$http({
url: 'https://www.somemachine.com/getdata',
method: "GET",
params: {}
}).success(function(data, status, headers, config) {
console.log(data);
}
它接收的数据非常大,我很高兴 gzip 源但是当我的$http
方法获取它时有没有办法对其进行压缩?
我正在获取一些带有角度的JSON:
$http({
url: 'https://www.somemachine.com/getdata',
method: "GET",
params: {}
}).success(function(data, status, headers, config) {
console.log(data);
}
它接收的数据非常大,我很高兴 gzip 源但是当我的$http
方法获取它时有没有办法对其进行压缩?