我无法在Mozilla开发人员工具中看到我在indexedDB中创建的数据库。 数据库已正确创建并且数据存储在其中,因为它可以检索它们,但不会出现在indexedDB的工具部分中。 有人知道为什么会这样和/或如何解决它? 是Mozilla v.40 提前谢谢。
答案 0 :(得分:0)
启用Firefox 34及更高版本中提供的Storage Inspector:
默认情况下禁用Storage Inspector。在开发人员工具设置中启用它。
Storage Inspector使您可以检查网页可以使用的各种类型的存储。目前,它可用于检查以下存储类型:
Cookies – All the cookies created by the page or any iframes inside of the page. Cookies created as a part of response of network calls are also listed, but only for calls that happened while the tool is open.
Local Storage – All local storage items created by the page or any iframes inside the page.
Session Storage – All session storage items created by the page or any iframes inside the page.
IndexedDB – All indexedDB databases created by the page or any iframes inside the page, their Object Stores and the items stored in these Object Stores.
打开开发者工具,然后点击右上方菜单左侧的第四个图标:
<强>参考强>
答案 1 :(得分:0)