我尝试通过Chrome扩展程序上的HTML5文件系统API保存空文件。
$(document).ready(function() {
navigator.webkitPersistentStorage.requestQuota(
1024*1024,
function(grantedBytes) {
window.webkitRequestFileSystem(PERSISTENT, grantedBytes, successCallback, errorCallback);
console.log(grantedBytes);
},
function(e) {
console.log('Error', e);
}
);
customBarDocumentLoad();
booksDocumentLoad();
});
但console.log(grantedBytes);
会返回' 0'到控制台。
我错过了什么,为什么会这样?