我在这里问了这个问题: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之后获取密钥的问题。我还没找到别的。我想我错过了一些基本的东西..?