如何在 java Google App Engine 中将静态文件的内容处置设置为内联

发布于 2024-11-04 02:41:23 字数 213 浏览 1 评论 0 原文

我知道如何为动态请求设置内容处置标头,但如何为静态文件设置它。

问题是GAE java生产版本自动设置为静态文件请求的附件内容处置(顺便说一句,默认本地开发内容处置是内联的),但我需要将其设置为内联

现在,当有人尝试打开静态 pdf 文件时,浏览器会自动开始下载,而不是尝试在新选项卡中打开它。

I know how to set content-disposition header for dynamic requests, but how to set it for static files.

Problem is that GAE java production version automatically sets to attachment content-disposition for static file requests (btw default local development content-disposition is inline), but I need to set it to inline.

Now when somebody tries to open static pdf file browser automatically starts download instead to try to open it in new tab.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

软糯酥胸 2024-11-11 02:41:23

除了 mime 类型和过期时间之外,您对静态文件的提供方式没有太多控制权(请参阅 Google app.yaml 文档)。如果您需要细粒度控制,可以将 PDF 作为 Blob 并为其编写一个处理程序。

(不要与 Blobstore API 混淆)

Besides mime type and expiration, you don't have much control over how static files are served (see Google app.yaml documentation). If you need fine-grained control, you can store the PDF in the Datastore as a Blob and write a handler for it.

(Not to be confused with the Blobstore API)

灼疼热情 2024-11-11 02:41:23

我所有的 pdf 文件都在 /pdf/ 路径下。我已经为 /pdfi/ uri 创建了 Web 请求,该请求使用 url 获取服务在 /pdf/ 路径下获取请求的文件并将内容处置设置为内联。

现在,只要有任何 pdf 文件的链接(静态 html 等),我就用 /pdfi/ 替换 /pdf/ ,一切正常。当 GAE 团队允许我们设置静态文件的内容处置时,我只需将每个链接从 /pdfi/ 更改为 /pdf/

All my pdf files are under /pdf/ path. I have created web request for /pdfi/ uri that with url fetch service fetches requested file under /pdf/ path and sets content-disposition to inline.

Now where ever (static html, etc.) there was link for any pdf file I have replaced /pdf/ with /pdfi/ and everything works. When and if GAE team allow us to set content-disposition for static files I will simply change every link from /pdfi/ to /pdf/

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