349

如何检查是否设置了项目localStorage?目前我正在使用

if (!(localStorage.getItem("infiniteScrollEnabled") == true || localStorage.getItem("infiniteScrollEnabled") == false)) {
    // init variable/set default variable for item
    localStorage.setItem("infiniteScrollEnabled", true);
}
4

16 回答 16

616

The getItem method in the WebStorage specification, explicitly returns null if the item does not exist:

... If the given key does not exist in the list associated with the object then this method must return null. ...

So, you can:

if (localStorage.getItem("infiniteScrollEnabled") === null) {
  //...
}

See this related question:

于 2010-07-16T07:06:26.953 回答
64

你可以使用hasOwnProperty方法来检查这个

> localStorage.setItem('foo', 123)
undefined
> localStorage.hasOwnProperty('foo')
true
> localStorage.hasOwnProperty('bar')
false

适用于当前版本的 Chrome(Mac)、Firefox(Mac) 和 Safari。

于 2017-01-04T11:16:02.437 回答
22

最短的方法是使用默认值,如果键不在存储中:

var sValue = localStorage['my.token'] || ''; /* for strings */
var iValue = localStorage['my.token'] || 0; /* for integers */
于 2014-02-20T12:59:43.690 回答
6
if(!localStorage.hash) localStorage.hash = "thinkdj";

或者

var secret =  localStorage.hash || 42;
于 2016-08-10T20:49:09.690 回答
4

如果你想检查未定义,你也可以试试这个:

if (localStorage.user === undefined) {
    localStorage.user = "username";
}

getItem 是一种方法,如果未找到值,则返回 null。

于 2016-02-29T12:10:03.543 回答
4

有几种方法可以检查我在这里添加它们

方法一

if("infiniteScrollEnabled" in localStorage){
     console.log("Item exists in localstorage");
}else{
    console.log("Item does not exist in localstoarge";
}

方法二

if(localStorage.getItem("infiniteScrollEnabled") === null){
    console.log("Item does not exist in localstoarge";
}else{
   console.log("Item exists in localstorage");
}

方法三

if(typeof localStorage["cart"] === "undefined"){
    console.log("Item does not exist in localstoarge";
}else{
   console.log("Item exists in localstorage");
}

方法四

if(localStorage.hasOwnProperty("infiniteScrollEnabled")){
     console.log("Item exists in localstorage");
 }else{
    console.log("Item does not exist in localstoarge";
 }
于 2021-03-31T08:19:38.177 回答
3

可以尝试这样的事情:

 let x = localStorage.getItem('infiniteScrollEnabled') === null ? "not found" : localStorage.getItem('infiniteScrollEnabled')
于 2021-07-24T03:54:27.833 回答
2

为真

localStorage.infiniteScrollEnabled = 1;

为假

localStorage.removeItem("infiniteScrollEnabled")

检查存在

if (localStorage[""infiniteScrollEnabled""]) {
  //CODE IF ENABLED
}
于 2014-08-22T04:33:47.657 回答
2

如何测试一个项目的存在localStorage?此方法适用于 Internet Explorer。

<script>
    try{
        localStorage.getItem("username");
    }catch(e){
        alert("we are in catch "+e.print);
    }
</script>
于 2015-10-08T17:19:31.203 回答
1

我已经在我的项目中使用过并且非常适合我

var returnObjName= JSON.parse(localStorage.getItem('ObjName'));
if(returnObjName && Object.keys(returnObjName).length > 0){
   //Exist data in local storage
}else{
  //Non Exist data block
}
于 2020-04-07T07:09:19.947 回答
1

我能建议的最好和最安全的方法是这样,

if(Object.prototype.hasOwnProperty.call(localStorage, 'infiniteScrollEnabled')){
    // init variable/set default variable for item
    localStorage.setItem("infiniteScrollEnabled", true);
}

这通过了 ESLint 的no-prototype-builtins规则。

于 2019-08-06T06:45:54.107 回答
1

我参加这个聚会迟到了,但是使用我创建的一个方便的实用程序包装器localDataStorage可以轻松地检查 localStorage 是否存在键(或键值的存在)。

在用类似的东西实例化包装器之后

myLDS = localDataStorage( 'segmentedStorageHere' );

你可以设置键

myLDS.set( 'infiniteScrollEnabled', true );

以直截了当的方式。请注意,此示例实际上是将布尔值传递给商店,可以在其中检索它

let scrollingState = myLDS.get( 'infiniteScrollEnabled' );

scrollingState将包含返回的布尔值。包装器会无缝地为您跟踪原生 JavaScript 数据类型(数组、布尔值、日期、数字、对象等)。您的代码中不再需要 JSON 字符串化/解析。

现在,当我们需要知道密钥是否在商店中时,我们可以像这样检查它

if( myLDS.haskey( 'infiniteScrollEnabled' ) ) {
    console.log( "It's been set!" ); 
} else {
    console.log( "The key is not set." ); 
}

您还可以检查是否存在特定值。例如

myLDS.set( 'myNumber', 1234.5678 );
console.log( myLDS.hasval( 1234.5678 ) );    --> true
于 2021-04-01T03:08:14.717 回答
1

您应该检查localStorage 中项目的类型

if(localStorage.token !== null) {
   // this will only work if the token is set in the localStorage
}

if(typeof localStorage.token !== 'undefined') {
  // do something with token
}

if(typeof localStorage.token === 'undefined') {
  // token doesn't exist in the localStorage, maybe set it?
}
于 2017-09-24T15:21:12.577 回答
0
localStorage['root2']=null;

localStorage.getItem("root2") === null //false

也许更好地扫描计划?

localStorage['root1']=187;
187
'root1' in localStorage
true
于 2014-06-26T07:35:44.513 回答
0

正如@Christian C. Salvadó 上面提到的,你可以做到 if (xxx === null){}

但 null 也是一个虚假值,如下所示:

if (null){
console.log ("hello");
}

不打印“你好”。

于 2022-02-13T18:30:26.360 回答
-3

试试这个代码

if (localStorage.getItem("infiniteScrollEnabled") === null) {

} else {

}
于 2020-04-27T00:59:09.880 回答