添加记录并检索生成的密钥

时间:2012-12-28 21:36:28

标签: javascript html5 windows-8 microsoft-metro indexeddb

  

可能重复:
  Get key of added record in IndexedDB

我在这里问了这个问题:Get key of added record in IndexedDB但是我不知道为什么它被贬低了。我现在花了很多时间研究这个问题。

以下是添加记录的代码

var request = objectStore.put({ entryType: entryType, entryDate: t });
        request.onsuccess = function (event) {
            console.log("Saved with id ", evt.result)
            var key = evt.result;
        };

但是,键值显示为未定义。我只阅读了这篇文章,讨论了在事务http://msdn.microsoft.com/en-us/magazine/gg679063.aspx之后获取密钥的问题。我还没找到别的。我想我错过了一些基本的东西..?

0 个答案:

没有答案