libcurl支持解压缩(如$(document).on("click", "[name=btnRemovePhoto]", function () {
var r = confirm("Are you sure you want to remove the photo?");
if (r == true) {
var uniqueId = $(this).data('uniqueId');
var $this = $(this); //Insert this line
$.post($("#remove-photo-url").val(), { uniqueId: uniqueId })
.done(function () {
var img = $this.closest("div.col-md-4").find("img"); //USE $this
console.log(img);
img.attr('src', '');
img.attr('src', img.attr('src') + '?' + Math.random());
});
}
});
和gzip
)。但我重申它不支持压缩。
这很奇怪。
为什么它也不支持压缩?
答案 0 :(得分:0)
根据curl developer Daniel Stenberg
没有办法自动压缩HTTP请求。
Apache允许Input Decompression,但
很少有浏览器能够gzip请求正文
这可能是其背后的原因。