我想在点击链接时下载文件。
<a href="javascript:download(375,untitled.png,image/x-png,*base64bytestring*)" >untitled.png</a>
javascript代码
function download(id,name,contenttype,filebyte)
{
}
答案 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>