Questions tagged «html5-filesystem»

8
没有链接的JavaScript Blob文件名
强制通过window.location下载时,如何在JavaScript中设置Blob文件的名称? function newFile(data) { var json = JSON.stringify(data); var blob = new Blob([json], {type: "octet/stream"}); var url = window.URL.createObjectURL(blob); window.location.assign(url); } 运行上面的代码即可立即下载文件,而无需刷新页面,如下所示: bfefe410-8d9c-4883-86c5-d76c50a24a1d 我想将文件名设置为my-download.json。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.