Microsoft Edge 创建文件对象

Microsoft Edge create File Object

我在 Microsoft Edge 中创建文件对象时遇到问题。在 Chrome 中,它工作得很好。

var generatedFile = new window.File(["Rough Draft ...."], "Draft1.txt", {type: "text/plain", lastModified: new Date()})

https://jsfiddle.net/mazhekin/wtnpa87o/

Microsoft Edge 尚不支持文件构造函数。 View relevant caniuse page.

一个可能的解决方法(对我有用)是使用 Blob 构造函数。如所述 here.