最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - HTML5 local storage sort - Stack Overflow

programmeradmin1浏览0评论

I am using local storage to store user entries and am displaying the entries on another page. I need a way to sort them based on the most recent date and time of edit. Is there a way to do this with HTML5. If not, what's the easiest/most effective way to do so?

Thanks for the inputs.

I am using local storage to store user entries and am displaying the entries on another page. I need a way to sort them based on the most recent date and time of edit. Is there a way to do this with HTML5. If not, what's the easiest/most effective way to do so?

Thanks for the inputs.

Share asked Oct 18, 2010 at 13:49 intlintl 2,77310 gold badges48 silver badges75 bronze badges 3
  • Are you storing JSON encoded objects? Can't you just timestamp the entries as you add them to local storage? – robertc Commented Oct 18, 2010 at 16:33
  • I am not storing a JSON object. – intl Commented Oct 18, 2010 at 17:55
  • Also, I'm looking for a way to sort them based on a sorting system. The only way I can think of doing it now is to actually include a timestamp in the local storage value. – intl Commented Oct 18, 2010 at 18:57
Add a ment  | 

2 Answers 2

Reset to default 5

If your keys/values have an inherent order to them (alphabetical, numerical, etc), then putting a timestamp in them may be superfluous. Although the Storage object has no sort method, you can create a new Array() and then sort that.

function SortLocalStorage(){
   if(localStorage.length > 0){
      var localStorageArray = new Array();
      for (i=0;i<localStorage.length;i++){
          localStorageArray[i] = localStorage.key(i)+localStorage.getItem(localStorage.key(i));
      }
   }
   var sortedArray = localStorageArray.sort();
   return sortedArray;
}

The disadvantage to this is that the array is not associative, but that is by nature of the JavaScript Array object. The above function solves this by embedding the key name into the value. This way its still in there, and the functions you'd use to display the sorted array can do the footwork of separating the keys from the values.

You've got to pair the timestamp with the stored value somehow, you can create a wrapper object for each value and store the value and the timestamp in a single object. Assuming you have a value myvalue you want to store with reference myref:

var d=new Date();
var storageObject = {};
storageObject.value = myvalue;
storageObject.timestamp = d.getTime();
localStorage.setItem(myref, JSON.stringify(storageObject));

On the other page you then need to rehydrate your objects into an array and implement your pareFunction function.

Your other option would be to use Web SQL Database and Indexed Database API which lets you more naturally store and query this sort of multifaceted info, but you would probably have to create some sort of abstract wrapper to make things work easily cross browser.

发布评论

评论列表(0)

  1. 暂无评论