Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个在客户端完全执行的 web 应用程序。其目的是充当文件转换实用程序,例如将用户本地存储的 Word 文档转换为 PDF。
因此,在获得用户许可的情况下,应用程序可以读取指定的本地文件,并在内存中将其处理为 PDF 格式。
如何让用户“下载”结果?由于数据无论如何都保存在浏览器的内存中,我不希望将其上传到某个服务器。
[编辑]
我的情况的解决方案是使用 HTML5 FileSaver API。
也许这个问题应该被关闭,因为它实际上是
使用 HTML5/Javascript 生成和保存文件
感谢 aefxx