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?
| ||||
|
feedback
|
|
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.
| |||
feedback
|