This still isn't working like I thought.
At this point, I simply want to take an array of objects in localStorage and update a database column with the new array of objects.
In my old environment (PHP/MySQL), I could do this in 5 minutes. On here, I've been struggling for days.
I understand I have to write Javascript to read from localStorage and convert it to something that the database can read. Unfortunately, I can't seem to get the database to accept the data no matter what I do to it.
In my Update request, I am able to pass the value localStorage to custom Javascript. Yay. I want to take that data... that array of objects... and put it into the database column (type:array).
If you'll forgive my sarcasm for a moment, there doesn't seem to be any Javascript on this planet that can accomplish this successfully. I've tried taking each object as a string, pushing that string to an array... but that didn't work. I tried taking the entire array of objects and converting it to one big string, but that didn't work. I've tried other things too. NOTHING works!
My purpose in trying Appery was to save time and get things done quicker. At first, things were great. But as soon as I had to interface between local storage and the database via REST, everything became a battle.
I've combed through your documents and tutorials. None of them explain how to do what I'm trying to do. I don't think I'm trying to do anything strange or unusual, and that's reinforced the many others on here that have asked similar questions regarding arrays of objects.
Sorry if I sound short, I just really need some assistance here so that I can continue on with my project.
Thank you very much!