Page 3 of 3

Arrays of objects in localStorage to database

Posted: Sun Jul 26, 2015 1:30 pm
by Alena Prykhodko

Hello,

You can find it in original post preIn localStorage, I have an array that looks something like this:

[{"name":"Some Name","value":"5"},{"name":"Another Name","value":"23"}, etc... /pre


Arrays of objects in localStorage to database

Posted: Mon Jul 27, 2015 4:27 am
by Vikram Raju

May I have the link please?


Arrays of objects in localStorage to database

Posted: Mon Jul 27, 2015 4:36 am
by Jack Bua

to make arrays in JS:
http://www.w3schools.com/js/js_arrays...

To do so in local storage, first create a model with a type as Array, add the values, then make a storage and assign its type as whatever you named your array.


Arrays of objects in localStorage to database

Posted: Tue Aug 04, 2015 11:04 am
by Vikram Raju

@jack Bua : ok thanks for your reply.