gpt4 book ai didi

angular - IE 11 无法从 Angular 2 中的字节数组创建文件对象

转载 作者:太空狗 更新时间:2023-10-29 17:19:28 25 4
gpt4 key购买 nike

谁能告诉我为什么 IE11 在最后一行抛出错误 -

this.document = this.control.value;
const bytes =
this.documentService.base64toBytes(this.document.documentBlob.documentData,
this.document.documentDataFormat);
const file = new File(bytes, this.document.documentName, { type:
this.document.documentDataFormat });

这在 Chrome 和 Firefox 中都有效。IE 抛出对象错误 -

Object doesn't support this action.

最佳答案

文件是 Blob 加上元属性,因此您可以像这样添加必要的属性:

let blob = this.documentService.base64toBytes(this.document.documentBlob.documentData, this.document.documentDataFormat);
// and add the meta properties
blob['lastModifiedDate'] = new Date();
blob['name'] = 'fileName';

那么blob就是一个文件。

关于angular - IE 11 无法从 Angular 2 中的字节数组创建文件对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44377464/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com