我嘗試使用HTML5系統來存儲我的網站上的圖像的URL,我覺得有很多例子來說明如何將本地圖像存儲到Chrome文件系統但我無法找到通過網址獲取圖像的方式,然後將其存儲在HTML5文件系統中。如何將圖像保存到HTML5文件系統與圖像
這是我的代碼,但它是錯誤的。
lib.ajax.get(file , function(xhr, data){
if(xhr.status == 200){
fs.root.getFile("test.jpg", {create: true}, function(fileEntry) {
// Create a FileWriter object for our FileEntry (log.txt).
fileEntry.createWriter(function(fileWriter) {
fileWriter.onwriteend = function(e) {
console.log('Write completed.');
};
fileWriter.onerror = function(e) {
console.log('Write failed: ' + e.toString());
};
// Create a new Blob and write it to log.txt.
var bb = new BlobBuilder(); // Note: window.WebKitBlobBuilder in Chrome 12.
bb.append(data);
fileWriter.write(bb.getBlob('image/jpeg'));
callback && callback("test.jpg");
}, errorHandler);
}, errorHandler);
}
});
'window.requestFileSystem = window.requestFileSystem || window.webkitRequestFileSystem;' – zenden2k 2015-09-07 15:17:21