如何显示文件夹中的文档?

发布于 2024-10-13 03:32:53 字数 93 浏览 2 评论 0 原文

如何使用Web文件夹中的文件在浏览器中显示word文档、pdf文档?因此,如果用户上传 pdf 报告并希望在浏览器中查看它,我该如何允许这种情况发生呢? HTML5能用吗?

How can i display word documents, pdf documents in the browser using files from the web folder? So if a user uploads a pdf report and wants to see it in the browser, how can i allow that to happen? Can HTML5 be of use?

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

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

发布评论

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

评论(1

小傻瓜 2024-10-20 03:32:53

从您关于显示图像的评论来看,您似乎想要将 PDF 或 Word 文件嵌入到页面中。最简单的方法是使用 iframe,如下所示:

<iframe src="http://myserver.com/userUploads/foobar.doc" width="500px" height="500px">
</iframe>

但是,不同文档类型的不同小部件看起来会有很大不同,并且可能无法提供您期望的所有功能(如 此示例)。此外,并非所有浏览器都配置有内联显示文档的方式 - 有些浏览器会提示用户下载文件。

将文档上传到 Scribd 等工具将提供跨文档类型和浏览器的更统一的体验;然而,根据这些文档保密的重要性,Scribd 可能不是一个好的解决方案。

From your comment about displaying images, it seems like what you want is to embed the PDF or Word file in the page. The easiest thing to do is use an iframe, like so:

<iframe src="http://myserver.com/userUploads/foobar.doc" width="500px" height="500px">
</iframe>

However, the different widgets for different document types will look substantially different and may not provide all the functionality you would expect (as in this example). In addition, not all browsers will be configured with a way to display the document inline - some will prompt the user to download the file.

Uploading the documents to something like Scribd will provide a more uniform experience across document types and browsers; however, depending on how important it is for these documents to be private, Scribd may not be a good solution.

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