为什么db.transaction无法使用indexeddb?

时间:2014-03-03 13:40:08

标签: php jquery html indexeddb

我是使用inxededdb的新手,我试图从商店中获取数据。存储包含数据,但由于某种原因,代码在尝试设置var tx后停止。如果我遗失任何内容,请告诉我。这是我试图获得这本书的功能:

function getBook(){
    var tx = db.transaction("book", "readonly");
    var store = tx.objectStore("book");
    var index = store.index("by_getid");

    var request = index.get("<?php echo $_GET['book'] ?>");
    request.onsuccess = function() {
      var matching = request.result;
      if (matching !== undefined) {
         document.getElementById("text-container").innerHTML = matching.text;
      } else {
        alert('no match');
        report(null);
      }
    };
}

解决版本:

function getBook(){
    var db;
    var request = indexedDB.open("library", 1);  

    request.onsuccess = function (evt) {
    db = request.result; 
    var transaction = db.transaction(["book"]);
    var objectStore = transaction.objectStore("book");
    var requesttrans = objectStore.get(<?php echo $_GET['book'] ?>);

        requesttrans.onerror = function(event) {

        };

        requesttrans.onsuccess = function(event) {
            alert(requesttrans.result.text);
        };

    };
}

2 个答案:

答案 0 :(得分:4)

问题可能是你的db变量。您可能正在访问连接对象的已关闭或空实例。

尝试在函数内部创建数据库连接。不要使用全局db变量。

答案 1 :(得分:0)

index.get产生主键。您必须使用生成的主键获取记录值。