14

我正在尝试遍历 localStorage 以通过localStorage.length与我的搜索算法一起使用的所有项目。如果我将:i < localStorage.length在 for 循环中更改为简单的数字,即:for (i=0; i<100; i++)而不是:(i=0; i<=localStorage.length-1; i++)一切都有效。但是,我确实意识到问题可能出在搜索算法上。

获取所有项目的代码:

   var name = new Array();

   for (var i = 0; i <= localStorage.length - 1; i++) { // i < 100 works perfectly
   key = localStorage.key(i);
   val = localStorage.getItem(key); 
   value = val.split(","); //splitting string inside array to get name
   name[i] = value[1]; // getting name from split string
   }

我的工作(!?)搜索算法:

 if (str.length == 0) { 
  document.getElementById("searchResult").innerHTML = "";
  }   
  else {          
      if(str.length > 0) {
          var hint = "";
          for(var i=0; i < name.length; i++) {                
                if(str.toLowerCase() == (name[i].substr(0, str.length)).toLowerCase()) { //not sure about this line
                    if(hint == "") {                            
                            hint = name[i];                         
                        } else {                            
                            hint = hint + " <br /> " + name[i];                                 
                        }                 
                   }                      
             }            
       }          
}

 if(hint == "") {   
document.getElementById("searchResult").innerHTML=str + " står inte på listan";     
} else {        
    document.getElementById("searchResult").innerHTML = hint;       
    }
 }

my 有localStorage.length什么问题,或者搜索算法有什么问题?

4

2 回答 2

16

localStorage 是一个object,而不是一个array. 尝试for(var i in window.localStorage)

for(var i in window.localStorage){
   val = localStorage.getItem(i); 
   value = val.split(","); //splitting string inside array to get name
   name[i] = value[1]; // getting name from split string
}
于 2012-05-26T17:17:28.317 回答
1

现在问题已解决。问题是每次将数据保存到 localStorage 时,由于错误编写的 for 循环(在 setItem 部分中),一个额外的空项目存储在本地数据库的底部。arrayIndex < guestData.length 应该是 arrayIndex <guestData.length-1。arrayIndex < guestData.length-1 存储所有项目,而不会在数据库底部创建一个空项目,这后来弄乱了搜索算法,因为要搜索的最后一个值是未定义的(空项目)。

于 2012-08-18T03:02:51.827 回答