Code:
{
"code": 200,
"data":
{
"items":
[
{
"title": "test 0"
},
{
"title": "test 1"
}
]
}
}
The "items" array contains two objects (each with a single "title" value).
You should change this:
Code:
For i = 0 To jsonItems.Size - 1
jsonItems = jsonItems.Get(i) '<----------
Log(jsonItems.Get("title"))
Next
To:
Code:
For i = 0 To jsonItems.Size - 1
jsonresultMap = jsonItems.Get(i)
Log(jsonResultMap.Get("title"))
Next