檢查儲存項目是否存在
使用 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中文網其他相關文章!