如何在 JavaScript 中将 Blob 转换为文件

2022-08-30 01:24:49

我需要将图像上传到NodeJS服务器到某个目录。我正在使用节点模块。connect-busboy

我有图像,我使用以下代码转换为blob:dataURL

dataURLToBlob: function(dataURL) {
    var BASE64_MARKER = ';base64,';
    if (dataURL.indexOf(BASE64_MARKER) == -1) {
        var parts = dataURL.split(',');
        var contentType = parts[0].split(':')[1];
        var raw = decodeURIComponent(parts[1]);
        return new Blob([raw], {type: contentType});
    }
    var parts = dataURL.split(BASE64_MARKER);
    var contentType = parts[0].split(':')[1];
    var raw = window.atob(parts[1]);
    var rawLength = raw.length;
    var uInt8Array = new Uint8Array(rawLength);
    for (var i = 0; i < rawLength; ++i) {
        uInt8Array[i] = raw.charCodeAt(i);
    }
    return new Blob([uInt8Array], {type: contentType});
}

我需要一种方法将 blob 转换为文件以上传图像。

有人可以帮我吗?


答案 1

您可以使用 File 构造函数:

var file = new File([myBlob], "name");

根据 w3 规范,这会将 Blob 包含的字节追加到新 File 对象的字节中,并使用指定的名称创建文件 http://www.w3.org/TR/FileAPI/#dfn-file


答案 2

这个函数将a转换为a,它对我来说效果很好。BlobFile

Vanilla JavaScript

function blobToFile(theBlob, fileName){
    //A Blob() is almost a File() - it's just missing the two properties below which we will add
    theBlob.lastModifiedDate = new Date();
    theBlob.name = fileName;
    return theBlob;
}

TypeScript(具有正确的键入)

public blobToFile = (theBlob: Blob, fileName:string): File => {
    var b: any = theBlob;
    //A Blob() is almost a File() - it's just missing the two properties below which we will add
    b.lastModifiedDate = new Date();
    b.name = fileName;

    //Cast to a File() type
    return <File>theBlob;
}

用法

var myBlob = new Blob();

//do stuff here to give the blob some data...

var myFile = blobToFile(myBlob, "my-image.png");