MVC-在iframe窗口中查看word文档



我在MVC剃刀文件中有iframe标记我可以在iframe中加载文本、pdf文件。在这里,iframe源只不过是blob路径。这里的blob只是来自azure blob存储的数据。但在渲染完成后,我无法看到word文档,iframe显示为空白。

下面是iframe窗口-

<iframe id="frm" src="<blob path>"></iframe>

iframe与word文档兼容吗?如果没有,我们还有什么其他方式可以在MVC应用程序中显示word文档文件。

嗨,你可以使用谷歌文档查看器进行如下操作:

<iframe src="https://docs.google.com/gview?url=http://remote.url.tld/path/to/document.doc&embedded=true"></iframe>

或Office 365查看器:

<iframe src='https://view.officeapps.live.com/op/embed.aspx?src=http://remote.url.tld/path/to/document.doc' width='1366px' height='623px' frameborder='0'>This is an embedded <a target='_blank' href='http://office.com'>Microsoft Office</a> document, powered by <a target='_blank' href='http://office.com/webapps'>Office Online</a>.</iframe>

问候

最新更新