Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在开发我的应用程序时,我使用localStorage["key"]并key成为不同的字符串来存储我的值。
localStorage["key"]
key
现在我什至不知道我用过的所有键。
有没有办法从我的文件系统中检索所有键及其值?
有没有办法放弃整个localStorage?
localStorage
localStorage.clear();工作恰到好处!
localStorage.clear();
但是知道和检索所有键值对的另一个问题仍然存在。
您可以使用迭代器来获取所有键...
for (var key in localStorage) { console.log(key + ": " + localStorage[key]); }
根据oneofthelions,localStorage.clear()可以删除所有项目。