Rub*_*uby 10 powerpoint presentation contentpresenter reactjs
我对此进行了很多搜索,但找不到任何软件包或有关如何使用react.js在网页上查看“.ppt”文件的指南。
我允许用户上传“.ppt”文件,并且我希望他能够在网页中查看该“Powerpoint”文件,这可能吗?
我尝试了以下方法,但没有成功...
<iframe
src={`https://view.officeapps.live.com/op/embed.aspx?src=[${linkToPPTFile}]`}
width="100%"
height="600px"
frameBorder="0"
></iframe>
Run Code Online (Sandbox Code Playgroud)
任何帮助将不胜感激。
小智 5
我也有这个类似的问题。问题出在src=[${linkToPPTFile}]iframe src 的这一部分。拆下盒子支架。它应该只是:
<iframe
src={`https://view.officeapps.live.com/op/embed.aspx?src=${linkToPPTFile}`}
width="100%"
height="600px"
frameBorder="0"
>
</iframe>
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
7562 次 |
| 最近记录: |