如何对 IndexedDB 查询的结果进行排序?

发布于 2024-09-27 23:29:28 字数 53 浏览 3 评论 0原文

是否可以从 IndexedDB 查询接收排序结果?如果不是,对结果进行排序的最佳方法是什么?

Is it possible to receive sorted results from an IndexedDB query? If not, what is the best way to go about sorting results?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一百个冬季 2024-10-04 23:29:28

您可以使用 IDBObjectStore.openCursor、IDBIndex.openCursor 和 IDBIndex.openKeyCursor 获取按对象存储的键或任何索引的顺序排序的项目。

请注意,随着速度实现的发展,使用 http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html

You can get items sorted by the object store's key or any index's order using IDBObjectStore.openCursor, IDBIndex.openCursor, and IDBIndex.openKeyCursor.

Note that with the speed implementations are moving, it's probably a good idea to use http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文