Hi
How do I extract only the value of a particular object of array from data retrived from a db.
Hi I have similar issue but I am unable to parse the LSV. I just get object object returned after parsing the LSV
The code to retrieve the data from the db.
var dbdata = (JSON.stringify(data));
The result of the above code
{ "resource": [ { "userID":1, "classID":1 }, { "userID":2, "classID":2 } ] }
I want to iterate through this structure and only retrieve the value of the userID's only.
Similar to this suggestion ( https://getsatisfaction.com/apperyio/...)
but it does not actually work when I implement it.
Please can you assist