我想知道如何保存添加到对象库的对象的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
之外使用。