Mapping Server Array to List
Hello,
I'm having some difficulty mapping my server-generated array to a list that auto-expands.
Here are the two arrays I'm getting in server code testing:
{"usermessage":["message2","message3","message1","message0"],"fullname":["user2","user3","user1","user0"]}
and the relevant bit of server code:
responseBody.fullname = fn;
responseBody.usermessage = umess;
response.success(responseBody, "application/json");
Is there another way I should be passing the parameters or assigning them?