我正在使用 IndexedDB 并且我有两个对象存储:equip(代表不同的设备,主键tagNo)和equipParts(代表一件设备的部件,并且有一个基于标签号/序列号的索引,主键seqNo,带有一个字段tagNo,它表示该部分所属的设备)。
如果我删除了equip中的一条记录,我想删除所有带有equip的tagNo的equipParts记录(就像“其中equipParts.tagNo =equip.tagNo”)。
摘自我的代码:
var tx = db.transaction(["equip", "equipParts"],"readwrite");
var estore = tx.objectStore("equip");
var pstore = tx.objectStore("equipParts");
var tagIndex = pstore.index("by_tagNo");
var pdestroy = tagIndex.openCursor(IDBKeyRange.only(tagno)); //opens all records bearing the selected tag number
pdestroy.onsuccess = function() {
var cursor = pdestroy.result;
if (cursor) {
if (cursor.value.tagNo == tagno) {
pstore.delete(cursor.value.seqNo); //I guess I'm wrong here
}
cursor.continue;
}
}
pdestroy.onerror = function() {
alert("Deletion attempt NG");
}
var ereq = estore.delete(tagno);
ereq.onsuccess = function(e) {
alert("Form deletion OK");
window.location = "index.html";
}
ereq.onerror = function(e) {
alert("Form deletion NG");
window.location = "index.html";
}
db.close();
问题是只删除了装备中的记录;设备零件中的记录保留在那里。有没有办法根据非唯一索引(可以是父对象存储的主键)删除 IndexedDB 对象存储中的多条记录?