为什么下载pdf文档而不是显示在嵌入/iframe中?

Why does pdf document download instead of showing in a embed/iframe?(为什么下载pdf文档而不是显示在嵌入/iframe中?)
本文介绍了为什么下载pdf文档而不是显示在嵌入/iframe中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们有一个内部网站,其中有一些指向Web服务器上托管的PDF文档的链接。如果我打开Chrome Dev-Tools(F12),检查链接并添加带有相同pdf文档的嵌入,它会下载该文件而不是显示它。我已尝试使用Embed和IFRAME,但仍然遇到同样的问题。

原码:

<a id="id2239" href="http://example.com:8080/client/attachment/filename.pdf" class="act01">filename.pdf</a>
屏幕截图:

我们要使用的代码:

<a id="id2239" href="http://example.com:8080/client/attachment/filename.pdf" class="act01">filename.pdf</a>

<div class="fgh"><embed id="fgh" src="http://example.com:8080/client/attachment/filename.pdf" type="application/pdf" width="400" height="400"></div>

截图:

如您所见,它实际上下载了文档,而不是在上面的屏幕截图中显示它。只显示一个空格。

使用其他文档的代码: 我刚刚在谷歌上找到了一份pdf文档,然后把它放到标签里,它就起作用了。它会在嵌入中显示文档,而不是下载文档。

<a id="id2239" href="http://example.com:8080/client/attachment/filename.pdf" class="act01">filename.pdf</a>

<div class="fgh"><embed id="fgh" src="http://infolab.stanford.edu/pub/papers/google.pdf" type="application/pdf" width="400" height="400"></div>

截图:

问题:

  1. 这两个例子有什么不同?为什么下载内部文档,但外部文档显示嵌入在页面中?
  2. 如何使其也与我们的Web服务器上的文件一起使用?

编辑:

pdf文档标题的屏幕快照。

推荐答案

这取决于响应标头中的内容类型。您可以检查您的Web服务器是否设置了正确的头信息,例如Content-Type:Application/pdf。

&qot;Chrome Dev-Tools(F12)&Quot;->;网络选项卡,检查响应标头。

这篇关于为什么下载pdf文档而不是显示在嵌入/iframe中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

how to remove this error quot;Response must contain an array at quot; . quot;.quot; while making dropdown(如何删除此错误quot;响应必须在quot;处包含数组。创建下拉菜单时(Q;))
Why is it necessary to use `document.createElementNS` when adding `svg` tags to an HTML document via JS?(为什么在通过JS为一个HTML文档添加`svg`标签时,需要使用`Document.createElementNS`?)
wkhtmltopdf print-media-type uses @media print ONLY and ignores the rest(Wkhtmltopdf print-media-type仅使用@media print,而忽略其余内容)
price depend on selection of radio input(价格取决于无线电输入的选择)
calculate price depend on selection without button(根据没有按钮的选择计算价格)
What should I consider before minifying HTML?(在缩小HTML之前,我应该考虑什么?)