我正在尝试使用iframe将pdf插入博客。但我得到了空白页面 任何想法如何解决它。我得到了带有chrome和firefox的空白页面。我收到错误"此发布商不允许发布"在Internet Explorer中
> <iframe width="100%" frameborder="0"
> src="https://drive.google.com/file/d/0B15mEFBok9BVUExXV2lRTDNsYjQ/view?usp=sharing"></iframe>
答案 0 :(得分:1)
似乎Google云端硬盘已将HTTP标头X-Frame-Options
设置为SAMEORIGIN
。这意味着它只能嵌入到同一个域(drive.google.com)中。您可以在此处详细了解:https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options
您应该可以通过打开浏览器的控制台来查看错误:
Refused to display 'https://drive.google.com/file/u/2/d/0B15mEFBok9BVUExXV2lRTDNsYjQ/view?usp=sharing' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'.`
我的建议是将其托管在其他地方(例如Amazon S3),您可以控制HTTP标头。