0

可能重复:
获取 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。我找不到其他任何东西。我想我在这里缺少一些基本的东西..?

4

0 回答 0