如何对 IndexedDB 查询的结果进行排序?
是否可以从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 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
在索引上使用范围。阅读更多信息:
http://www.w3.org/TR/IndexedDB/ #widl-IDBObjectStore-openCursor
Use a range on an index. Read more here:
http://www.w3.org/TR/IndexedDB/#widl-IDBObjectStore-openCursor