我正在玩一些FileSystem API。
我发现了很多示例,您可以在其中生成下载链接并让用户以“浏览器方式”下载文件。
我想知道两件事:
有没有办法将小提琴中的ajax结果作为文件直接写入磁盘(没有任何类型的提示)。以用户的桌面为例。
blob 是最合适的格式吗?
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function(){
if (this.readyState == 4 && this.status == 200){
console.log(this.response, typeof this.response);
var img = document.getElementById('img');
var url = window.URL = window.webkitURL;
img.src = url.createObjectURL(this.response);
}
}
xhr.open('GET', 'http://www.newyorker.com/online/blogs/photobooth
/NASAEarth-01.jpg');
xhr.responseType = 'blob';
xhr.send();