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.
问题是 IE 不支持 javascripts Filereader。我考虑过通过 ajax 将文件发送到服务器,然后服务器会回显文件内容。可以这样做吗?我对动态 Web 开发几乎没有经验
不是没有 File API,所以简短的回答是否定的。
更长的答案是,这将需要访问客户端计算机上超出 JavaScript 范围的文件,或者在传输之前访问内存中的数据。后者在 HTML5 File API 中提供,但由于功能和安全限制,两者在早期版本中是不可逾越的界限。
向后兼容的选项是在服务器上提供一个暂存区域(可能只是在内存中),以便在初始上传之后但在持久化之前预览文件。