Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Duplicate: Storing Objects in HTML5 localStorage – apsillers May 17 at 18:19

8 Answers

up vote 182 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"]);
share|improve this answer
2  
Thanks, works great! – pimvdb Dec 27 '10 at 18:03
1  
This is a much better answer. Prefer this method. – GoClimbColorado Oct 7 '11 at 14:30
2  
JSON is not supported in IE7 and earlier. – Saif Bechan Nov 22 '11 at 8:44
22  
@SaifBechan Don't worry about IE 6/7, we are talking about localStorage – tungd Jan 10 '12 at 4:40
1  
Can somebody explain why you have to do this and what is going on please? – Howdy_McGee Feb 26 at 6:08
show 4 more comments

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

share|improve this answer

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").

share|improve this answer
2  
You could have posted this as a comment... – Camilo Martin Feb 23 '12 at 15:04
2  
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 '12 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 '12 at 12:10

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 :)

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

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).

share|improve this answer

If you're using jQuery, you can easily use serializeArray().

share|improve this answer

Just created this:

https://gist.github.com/3854049

//Setter
Storage.setObj('users.albums.sexPistols',"blah");
Storage.setObj('users.albums.sexPistols',{ sid : "My Way", nancy : "Bitch" });
Storage.setObj('users.albums.sexPistols.sid',"Other songs");

//Getters
Storage.getObj('users');
Storage.getObj('users.albums');
Storage.getObj('users.albums.sexPistols');
Storage.getObj('users.albums.sexPistols.sid');
Storage.getObj('users.albums.sexPistols.nancy');
share|improve this answer

@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('$$$')];
}));
share|improve this answer
This is very bad even from performance viewpoint. Don't use this. – Rok Kralj Mar 30 '12 at 18:30
@RokKralj What would be a more performant way of storing a 2d array? Using JSON? – Ian Grainger Apr 2 '12 at 11:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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