Microsoft Edge创建文件对象

Microsoft Edge create File Object

本文关键字:对象 文件 创建 Edge Microsoft      更新时间:2023-09-26

我在Microsoft Edge中创建File对象时有问题。在Chrome中,它可以完美地工作。

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

Microsoft Edge还不支持文件构造函数。查看相关的canuse页面

一个可能的解决方法(对我来说是有效的)是使用Blob构造函数。