This post was written by Jeff Balogh. Jeff works on Mozilla’s web development team.
New in Firefox 3.5, localStorage is a part of the Web Storage specification. localStorage provides a simple Javascript API for persisting key-value pairs in the browser. It shouldn’t be confused with the SQL database storage proposal, which is a separate (and more contentious) part of the Web Storage spec. Key-value pairs could conceivably be stored in cookies, but you wouldn’t want to do that. Cookies are sent to the server with every request, presenting performance issues with large data sets and the potential for security problems, and you have to write your own interface for treating cookies like a database.
Here’s a small demo that stores the content of a textarea in localStorage. You can change the text, open a new tab, and find your updated content. Or you can restart the browser and your text will still be there.
The easiest way to use localStorage is to treat it like a regular object:
>>> localStorage.foo = 'bar' >>> localStorage.foo "bar" >>> localStorage.length 1 >>> localStorage[0] "foo" >>> localStorage['foo'] "bar" >>> delete localStorage['foo'] >>> localStorage.length 0 >>> localStorage.not_set null |
There’s also a more wordy API for people who like that sort of thing:
>>> localStorage.clear() >>> localStorage.setItem('foo', 'bar') >>> localStorage.getItem('foo') "bar" >>> localStorage.key(0) "foo" >>> localStorage.removeItem('foo') >>> localStorage.length 0 |
If you want to have a localStorage database mapped to the current session, you can use sessionStorage. It has the same interface as localStorage, but the lifetime of sessionStorage is limited to the current browser window. You can follow links around the site in the same window and sessionStorage will be maintained (going to different sites is fine too), but once that window is closed the database will be deleted. localStorage is for long-term storage, as the w3c spec instructs browsers to consider the data “potentially user-critical”.
I was a tad disappointed when I found out that localStorage only supports storing strings, since I was hoping for something more structured. But with native JSON support it’s easy to create an object store on top of localStorage:
Storage.prototype.setObject = function(key, value) { this.setItem(key, JSON.stringify(value)); } Storage.prototype.getObject = function(key) { return JSON.parse(this.getItem(key)); } |
localStorage databases are scoped to an HTML5 origin, basically the tuple (scheme, host, port). This means that the database is shared across all pages on the same domain, even concurrently by multiple browser tabs. However, a page connecting over http:// cannot see a database that was created during an https:// session.
localStorage and sessionStorage are supported by Firefox 3.5, Safari 4.0, and IE8. You can find more compatibility details on quirksmode.org, including more detail on the storage event.
Pingback from 颠覆网络35天 ─ 使用localStorage保存数据 < MJiA on June 25th, 2009 at 11:24 pm:
Trackback from Annals of the Homestarmy on June 30th, 2009 at 7:37 am:
Pingback from saving data with localStorage | the life of a web developer on July 2nd, 2009 at 4:07 am:
Pingback from 谋智社区 » Blog Archives » 颠覆网络35天 ─ 使用localStorage保存数据 on August 13th, 2009 at 9:32 pm:
Pingback from Recommendations, Collections, and Contributions (oh my!) « Mozilla Add-ons Blog on August 28th, 2009 at 12:28 am:
Pingback from AMO 5.0.9 Launched! :: The Mozilla Blog on August 28th, 2009 at 9:53 am:
Pingback from bunnyhero dev - Twitter follower tracker on September 18th, 2009 at 8:42 pm:
Pingback from Offline Cross-Browser Client-Side Storage for the Web using JavaScript and a little Flash | AddyOsmani.com | Where Web Businesses Grow on October 21st, 2009 at 8:46 pm:
Pingback from Offline Cross-Browser Client-Side Storage for the Web using JavaScript and a little Flash « BrightSpark on December 6th, 2009 at 10:42 am:
Pingback from an HTML5 offline image editor and uploader application ✩ Mozilla 웹 기술 블로그 on July 7th, 2010 at 9:04 am:
Pingback from Using HTML5 localStorage in Web Applications — My Girlfriend Hates This Blog on June 2nd, 2011 at 12:36 am:
Pingback from Frameworks de HTML5 para desarrolladores y usuarios: el futuro es móvil « Mulleres de Teo on April 12th, 2012 at 3:26 pm: