我正在通过http提供二进制数据。
我暂时使用Content-Disposition: attachment
。
我可以使用内置的http压缩(带有标头Accept-Encoding
的客户端请求数据)来压缩附件吗?
还是应该手动压缩附件?
通过http服务压缩字节数组的正确方法是什么?
答案 0 :(得分:1)
Content-disposition
是merely a header instructing the browser to either render the response, or to offer it as a download to the user。它不会更改任何HTTP语义,也不会更改响应主体的传输或解释方式。
因此,只需使用根据请求标头Accept-encoding
压缩响应主体的内置压缩。