gpt4 book ai didi

indexeddb - 如何获取所有 IDBIndex 键值(而不是对象存储主键)?

转载 作者:行者123 更新时间:2023-12-04 16:29:34 25 4
gpt4 key购买 nike

我有一个带有主键和附加索引(具有唯一键约束)的 IndexedDB 对象存储。

现在我想检索这个索引的所有键值。

之前,我使用了 IDBIndex.getAllKeys(),但显然此方法的行为已更改为返回对象存储主键而不是索引键。(但是,我无法在浏览器发行说明中找到任何文档或引用资料......)

所以我的问题是:检索所有索引键值的最佳推荐方法是什么?

最佳答案

IDBIndex.getAll 会起作用,但它会将所有值读入内存,这可能会很慢。

你是正确的 IDBIndex.getAllKeys 只返回主键,而不是索引键。

不幸的是,没有类似的单个函数会返回索引键,但您可以使用 IDBIndex.openKeyCursor 并避免将值读入内存:

const result = [];

index.openKeyCursor().onsuccess = (event) => {
var cursor = event.target.result;
if (cursor) {
// cursor.key is the index key, cursor.primaryKey is the primary key,
// and cursor.value is undefined because we're using openKeyCursor
// rather than openCursor.
result.push(cursor.key);
cursor.continue();
} else {
cb(result);
}
};

我还没有对此进行基准测试,但理论上它可能与 getAllKeys 一样快,尽管可能至少要慢一些,因为它需要触发和处理 N 个事件而不是一个。

只是不要在 MS Edge 中尝试 :)

Previously, I used IDBIndex.getAllKeys(), but appearently the behaviour of this method has changed to return the object store primary keys instead of the index keys. (I cannot, however, find any documentation, or reference in browser release notes to that effect...)

如果您使用的是 indexeddb-getall-shim ,早期版本确实错误地返回索引键而不是主键。这从未在规范中,只是垫片中的一个错误。既然我写了垫片...如果这确实是您困惑的根源,我深表歉意!

关于indexeddb - 如何获取所有 IDBIndex 键值(而不是对象存储主键)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53590913/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com