我如何保存添加到对象存储的对象的id以后使用?

时间:2015-11-18 19:02:26

标签: javascript indexeddb

我想知道如何保存添加到对象库的对象的id?

我知道我可以使用request.result函数的onsuccess来获取ID,但我想这样保存:

//after a get
var id;
request.onsuccess = function(event){
    id = request.result.id;
}
alert(id); //undefined

我看到了另一个答案,所有人都说如何在onsuccess函数中显示id:

request.onsuccess = function(event){
    alert(request.result.id);
}

但我想保存id以便在onsuccess之外使用。

0 个答案:

没有答案