Has anyone here ever used Amplify.js for localstorage fallback on non HTML5 browsers?. I need to know if you can use it in the same way that you would localstorage for example can I get the size of my localstorage by using the length object eg amplify.store.length also can I step tru my localstorage with amplify.js via each key say for eg. amplify.store.key(i) where i is a number which is the index of the items stored?

link|improve this question

57% accept rate
feedback

1 Answer

amplify.store is an abstraction over synchronous persistent storage, so it intentionally does not have the same API as localStorage. If you don't provide any parameters, then you will get back an object of all key/value pairs, which you can loop over to solve both of your needs.

var key,
    count = 0,
    data = amplify.store();
for ( key in data ) {
    // calculate the count
    count++;
    // or do something with the data
    console.log( key, "is", data[ key ] );
}
console.log( "There are", count, "items in the store." );
link|improve this answer
ok I may just use cookies as a fall back instead I thought I didnt have to write any new code. – Kern Elliott Nov 7 '11 at 17:13
feedback

Your Answer

 
or
required, but never shown

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