如何查看javascript HTML5 localstorage?
How to view javascript HTML5 localstorage?
我正在查看使用 localStorage.getItem()
和 localStorage.setItem()
的 JS 代码。它在某处存放物品,但我找不到位置。
当我去这里时(使用MacChrome):
~/Library/Application Support/Google/Chrome/Default/Local Storage/
有 leveldb
,但我找不到确切的项目存储位置。
这是准确的代码:
if (!localStorage.getItem('myapp')){
localStorage.setItem('myapp', JSON.stringify({next: 0, items: []}));
}
例如 Google Chrome:
1) 打开控制台。
2) 去申请
3) 打开存储 -> 本地存储
4) 您应该会看到带有键和值的 table
如果您询问 "when it is stored on computer disc" 这取决于浏览器和系统:
How is HTML5 WebStorage data physically stored?
Where does PERSISTENT file system storage store with chrome?
Where in the filesystem does IE8 store values stored in localStorage?
我正在查看使用 localStorage.getItem()
和 localStorage.setItem()
的 JS 代码。它在某处存放物品,但我找不到位置。
当我去这里时(使用MacChrome):
~/Library/Application Support/Google/Chrome/Default/Local Storage/
有 leveldb
,但我找不到确切的项目存储位置。
这是准确的代码:
if (!localStorage.getItem('myapp')){
localStorage.setItem('myapp', JSON.stringify({next: 0, items: []}));
}
例如 Google Chrome:
1) 打开控制台。
2) 去申请
3) 打开存储 -> 本地存储
4) 您应该会看到带有键和值的 table
如果您询问 "when it is stored on computer disc" 这取决于浏览器和系统:
How is HTML5 WebStorage data physically stored?
Where does PERSISTENT file system storage store with chrome?
Where in the filesystem does IE8 store values stored in localStorage?