如何在文档查看器中显示上载的文档(.doc,.docx,.pdf,.odf)

时间:2013-05-06 04:42:27

标签: python django

我上传文件并将其存储在数据库中。现在我尝试使用谷歌文档查看器在浏览器中显示文档。但它没有显示。在点击该链接时有一个链接的输出页面将下载该特定文档。我发布了下面的代码和输出。给我一些想法来显示文档。

模板

<iframe src="http://docs.google.com/viewer?url=http://127.0.0.1:8000/accounts/media/{% for detail in profile_detail %}{{ detail.res_act }}{% endfor %}&embedded=true" style="margin:0 auto; width:800px; height:800px;" frameborder="0"></iframe>

输出

Sorry, we were unable to find the document at the original source. Verify that the document still exists.
You can also try to download the original document by clicking here.

1 个答案:

答案 0 :(得分:3)

127.0.0.1只能从您自己的计算机上访问。它无法远程访问;这就是Google查看器无法显示您的文档的原因。