2013-04-13 105 views
0

鉻實現此處http://www.html5rocks.com/en/tutorials/file/filesystem/描述,只需添加webkit前綴的文件接口。該文檔涵蓋了界面的幾個方面,但是最簡單的步驟是什麼?例如,提示用戶使用文件保存對話框,或告訴他文件已保存在某處?例如,假設我們要爲用戶保存一些文本數據。使用Chrome文件界面編寫文件最簡單的方法是什麼?

我主要指的代碼作爲簡單的度量線,但是在80個字符以內,每行(和常識)。我還提到Chrome的26

回答

0

這是我發現了什麼。當然,它的使用是相當有限的,這是最好參照上述

function error(e) { console.log(e); }; 
webkitRequestFileSystem(TEMPORARY, Math.pow(2, 10), function(fs) { 
    fs.root.getFile('exported.txt', {create:true}, function(fileEntry) { 
     fileEntry.createWriter(function(fileWriter) { 
      fileWriter.onwriteend = function() { 
       alert('content saved to '+fileEntry.fullPath); 
      }; 
      var blob = new Blob(['Lorem Ipsum'], {type: 'text/plain'}); 
      fileWriter.write(blob); 
     }); 
    }, error); 
}, error); 
鏈接的主要文章
相關問題