使用javascript将base64string转换为可下载文件

时间:2017-07-09 07:04:20

标签: javascript base64

我想在点击链接时下载文件。

<a href="javascript:download(375,untitled.png,image/x-png,*base64bytestring*)" >untitled.png</a>

javascript代码

function download(id,name,contenttype,filebyte)
{

}

2 个答案:

答案 0 :(得分:2)

你可以使用这个简单的下载功能,传递你想要的网址,文件名和类型。

 function download(url, filename, mimeType){
        return (fetch(url)
            .then(function(res){return res.arrayBuffer();})
            .then(function(buf){return new File([buf], filename, {type:mimeType});})
        );
    }

    download('data:text/plain;base64,aGVsbG8gd29ybGQ=', 'hello.txt', 'text/plain')
    .then(function(file){
        console.log(file);
    })

答案 1 :(得分:0)

我建议您使用download.js库。包含此库并使用图像mime类型尝试以下代码:

<a href="javascript:download(atob('*base64bytestring*'), 'dlText.txt', 'text/plain');" >untitled.txt</a>