前端可以使用iframe可以直接预览文件,以下是几种依靠iframe实现在线预览的解决方案。
<iframe
src="fileUrl"
width="100%"
height="540"
frameborder="1"
></iframe>
1,一般文件比如照片、视频、pdf可以直接预览
2,world、excel和ppt可以使用office web viewer在线预览
fileUrl = `http://view.officeapps.live.com/op/view.aspx?src=${encodeURIComponent( url)}`
3,text文件使用frame会直接下载无法预览,txt格式文件预览时可能会乱码,此时可以用字节流生成URL。参考 https://www.jianshu.com/p/08dcdc35982f
4,需要注意的是office web viewer 有一定要求,文件路径需要是域名然后端口号应该是80