gzip 与网络服务器,无需内容编码
我有一个没有内容编码的网络服务器(boa 并且没有足够的资源)。是否有可能将压缩的 javascript 文件放在网络服务器上,并在下载后像内容编码一样在浏览器上解压缩?
I have a webserver without content-coding (boa and not enough ressources). is there a possibility to put ziped javascript-file on the webserver and unzip it at the browser after downloading like content-coding?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
理论上是的。您需要将 Content-Encoding: deflate 标头添加到您的 http 响应中。
您不能将 zip 程序创建的 zip 文件放置在要传输的服务器上,因为它包含一个带有 deflate 有效负载开始之前的文件结构的标头。
还要注意 gzip 和 deflate 之间的差异。使用 gzip,类似的情况也是可能的。
In theory yes. You would need to add the Content-Encoding: deflate header to your http response.
You can not place a zip file created by a zip program on the server to be transferred, as it contains a header with the file structure before the deflate payload begins.
Also mind the differences between gzip and deflate. With gzip, similar is possible, too.