如何在 java Google App Engine 中将静态文件的内容处置设置为内联
我知道如何为动态请求设置内容处置标头,但如何为静态文件设置它。
问题是GAE java生产版本自动设置为静态文件请求的附件内容处置(顺便说一句,默认本地开发内容处置是内联的),但我需要将其设置为内联。
现在,当有人尝试打开静态 pdf 文件时,浏览器会自动开始下载,而不是尝试在新选项卡中打开它。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除了 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)
我所有的 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/