If i didn't need localStorage, my code would look like this:

var names=new Array(); 
names[0]=prompt("New member name?");

This works, however I need to store this variable in localStorage and its proving quite stubborn. I've tried:

var localStorage[names]=new Array();
localStorage.names[0]=prompt("New member name?");

Where am I going wrong?

link|improve this question

feedback

6 Answers

up vote 70 down vote accepted

localStorage only supports strings. Use JSON.stringify() and JSON.parse().

var names=[];
names[0]=prompt("New member name?");
localStorage['names']=JSON.stringify(names);

//...
var storedNames=JSON.parse(localStorage['names']);
link|improve this answer
Thanks, works great! – pimvdb Dec 27 '10 at 18:03
This is a much better answer. Prefer this method. – GoClimbColorado Oct 7 '11 at 14:30
JSON is not supported in IE7 and earlier. – Saif Bechan Nov 22 '11 at 8:44
3  
@SaifBechan Don't worry about IE 6/7, we are talking about localStorage – tungd Jan 10 at 4:40
feedback

Use JSON.stringify() and JSON.parse() as suggested by no! This prevents the maybe rare but possible problem of a member name which includes the delimiter (e.g. member name "three|||bars").

link|improve this answer
You could have posted this as a comment... – Camilo Martin Feb 23 at 15:04
1  
Actually I cannot! I do need a reputation of 50 before I can comment questions and answers from other people. Back when I added my 2 cents the answer from Ian was the selected one. Adding a answer was my only possibility (besides upvoting - which I did) to bolster the correct answer. – jayeff Feb 24 at 10:14
Oh crap, SO is too stupid. I did downvote you (because I didn't remember that rule), and now I was going to change that to an upvote. It gives me an error: You last voted on this answer 20 hours ago Your vote is now locked in unless this answer is edited (click on this box to dismiss) And now I can't change my mind to an upvote. As if it was enough, I can't make a question for this on Meta Stack Overflow: I have been asking a few heavily downvoted questions and I'm under permanent ban until I get a higher rep (from non-questions). Oh well, I'll upvote your comment instead. Or make an tiny edit! :) – Camilo Martin Feb 24 at 12:10
feedback

The localStorage and sessionStorage can only handle strings. You can extend the default storage-objects to handle arrays and objects. Just include this script and use the new methods:

Storage.prototype.setObj = function(key, obj) {
    return this.setItem(key, JSON.stringify(obj))
}
Storage.prototype.getObj = function(key) {
    return JSON.parse(this.getItem(key))
}

Use localStorage.setObj(key, value) to save an array or object and localStorage.getObj(key) to retrieve it. The same methods work with the sessionStorage object.

If you just use the new methods to access the storage, every value will be converted to a JSON-string before saving and parsed before it is returned by the getter.

Source: http://www.acetous.de/p/152

link|improve this answer
feedback

Another solution would be to write a wrapper that store the array like this:

localStorage.setItem('names_length', names.length);
localStorage.setItem('names_0', names[0]);
localStorage.setItem('names_1', names[1]);
localStorage.setItem('names_' + n, names[n]);

Removes the overhead of converting to JSON, but would be annoying if you need to remove elements, as you would have to re-index the array :)

link|improve this answer
Kills the performance gain of not JSONifying. – Camilo Martin Feb 23 at 15:05
@CamiloMartin Yeah that's probably true.. :) – Znarkus Feb 23 at 19:15
feedback

The JSON approach works, on ie 7 you need json2.js, with it it works perfectly and despite the one comment saying otherwise there is localStorage on it. it really seems like the best solution with the least hassle. Of course one could write scripts to do essentially the same thing as json2 does but there is little point in that.

at least with the following version string there is localStorage, but as said you need to include json2.js because that isn't included by the browser itself: 4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; BRI/2; NP06; .NET4.0C; .NET4.0E; Zune 4.7) (I would have made this a comment on the reply, but can't).

link|improve this answer
feedback

@Nick C I just had to do this with a 2-d array (with jQuery): Set:

sessionStorage.setItem('item', $.map(a, function(l, i) {
  return l.join("$$$");
}).join("|||"));

Get:

sessionStorage.getItem('item', $.map(a.split('|||'), function(l, i) {
  return [l.split('$$$')];
}));
link|improve this answer
This is very bad even from performance viewpoint. Don't use this. – Rok Kralj Mar 30 at 18:30
@RokKralj What would be a more performant way of storing a 2d array? Using JSON? – Ian Grainger Apr 2 at 11:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.