检查存储项是否存在
使用 localStorage 时,通常需要确定某个项是否存在。提供的代码片段尝试使用真值和假值检查此条件,但还有一种更直接的方法可用。
使用 getItem
WebStorage 规范中的 getItem 方法如果未找到该项目,则方便地返回 null。这意味着您可以简单地检查:
if (localStorage.getItem("infiniteScrollEnabled") === null) { // Item doesn't exist }
这种方法清晰、简洁,是检查项目是否存在的首选方法。
相关参考:
- [在 HTML5 localStorage 中存储对象](https://stackoverflow.com/questions/1623985/storing-objects-in-html5-localstorage)
以上是如何判断localStorage中是否存在某个存储项?的详细内容。更多信息请关注PHP中文网其他相关文章!