先上代码:
function createAndDownloadFile(fileName, content) { var aTag = document.createElement(‘a‘); var blob = new Blob([content]); aTag.download = fileName; aTag.href = URL.createObjectURL(blob); aTag.click(); // 模拟点击 URL.revokeObjectURL(blob); }
fileName:文件名称
content:文件内容
直接调用这个方法,传入文件名和文件内容,程序新建 a 标签,新建 Blob 对象,将文件名赋给 a 标签,同时将 Blob 对象作为 Url 也赋给 a 标签,模拟点击事件,自动下载成功,最后再回收内存。
Blob 对象
Blob 对象是一个字节序列。拥有 size
和 type
等属性。·
拥有 2 个只读状态 OPEND
和 CLOSED。