gpt4 book ai didi

javascript - 使用javascript关闭indexeddb中的游标

转载 作者:行者123 更新时间:2023-11-28 00:15:08 26 4
gpt4 key购买 nike

有没有办法关闭indexeddb中的所有游标?我需要使用 JavaScript 停止所有当前打开的游标。

最佳答案

IndexedDB 具有事务模型,这意味着每个数据库对象(如表、游标、索引)都可以在事务范围内访问。它们无法在事务之外打开或访问。

Check this

IndexedDB is built on a transactional database model. Everything you do in IndexedDB always happens in the context of a transaction. The IndexedDB API provides lots of objects that represent indexes, tables, cursors, and so on, but each of these is tied to a particular transaction. Thus, you cannot execute commands or open cursors outside of a transaction.

因此,就像打开游标一样,游标只能从其事务上下文中关闭。因此,您无法通过单个 API 调用关闭 IndexedDB 上所有打开的游标。 IndexedDB 没有可用的此类 API。

关于javascript - 使用javascript关闭indexeddb中的游标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30520020/

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