I'm struggling to work with the response data and mapping it to labels.
I don't know how to get the service response to pick up the data in the array and show it in different places. I just get all the data shown in one place.
I have set up a REST service to pull data from a Fusion table.
The test request works and returns data fine.
Data response is like this
code
{
"kind": "fusiontables#sqlresponse",
"columns": [
"rowid",
"name",
"description"
],
"rows": [
[
"1001",
"Harlequin Vintage",
"My desc"
],
[
"1002",
"Wolf & Gypsy Vintage",
""
],
[
"1003",
"Artifice Vintage Furniture & Interiors",
""
]
]
}
/code
I clicked 'Automatically Create Service Response' to set the response parameters like below
I map the service to the list components labels
I want to split the response data and show them under different labels.
All I get is
I've worked through the tutorials but can;t spot a similar scenario to work from.
Help!