我在Microsoft Edge中创建File对象时遇到问题。在Chrome中它完美运行。
var generatedFile = new window.File(["Rough Draft ...."], "Draft1.txt", {type: "text/plain", lastModified: new Date()})
答案 0 :(得分:5)
Microsoft Edge尚不支持文件构造函数。 View relevant caniuse page
可能的解决方法(对我有用)是使用Blob构造函数。如上所述here。