gzip 与网络服务器,无需内容编码

发布于 2024-12-06 22:23:51 字数 92 浏览 1 评论 0原文

我有一个没有内容编码的网络服务器(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

相思碎 2024-12-13 22:23:51

理论上是的。您需要将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文