Chrome扩展程序 - 即使对于空文件,也会超出配额错误(代码10)

时间:2016-08-18 11:56:33

标签: javascript html5 google-chrome-extension filesystems

我尝试通过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'到控制台。

我错过了什么,为什么会这样?

0 个答案:

没有答案