JavaScriptのBase 64文字列からBLOBを作成する

1137 ワード

JavaでのBase 64文字列からBLOBを作成する


Jan 3 ' 20
8

私のようなすべてのコピーペースト愛好家のために、ここでは、クロム、FirefoxとEDGEの上で働く調理されたダウンロード機能です:
window.saveFile = function (bytesBase64, mimeType, fileName) {
var fileUrl = "data:" + mimeType + ";base64," + bytesBase64;
fetch(fileUrl)
    .then(response => response.blob())
    .then(blob => {
        var link = window.document.createElement("a");
        link.href
...
Open Full Answer