1

我正在使用以下代码从索引数据库中读取数据并将其保存在变量 allDownloadContent

ereaderdownload.indexedDB.getAllTodoItems = function() {

    /*var todos = document.getElementById("todoItems");
    todos.innerHTML = "";
  */
    var db = ereaderdownload.indexedDB.db;
    var trans = db.transaction(["downloadcontent"], "readwrite");
    var store = trans.objectStore("downloadcontent");
    var request = store.get(0);

    request.onsuccess = function(e) {
        console.log(e.target.result);
    };

    // Get everything in the store;
    var cursorRequest = store.openCursor();
    cursorRequest.onsuccess = function(e) {
        var result = e.target.result;
        if(!!result == false)
            return;
        allDownloadContent.push(result);
        result.continue();
    };
    alert("content "+allDownloadContent[0]);
    cursorRequest.onerror = ereaderdownload.indexedDB.onerror;
  };

当我从另一个 Javascript 文件调用 getAllTodoItems 方法时,我收到一条警报消息内容未定义

由于cursorRequest.onsuccess方法执行异步我得到未定义。

我无法使用网络工作者,因为 chrome 不支持它。

我在 Jquery 中尝试过承诺。我仍然收到相同的警报消息。

请帮助我解决问题。

4

1 回答 1

3

至于现在所有的浏览器都只支持Indexed-db ASync API,你需要做的就是给事务oncomplete事件添加一个事件监听器。此事件将在光标关闭时触发。从那里您可以返回您的代码:

trans.oncomplete = function (event) {
    console.log('transaction completed');
    yourFunction();
};
于 2012-12-26T14:52:08.590 回答