Did you know Bot Libre also provides free hosted issue tracking for your own website or mobile app?
Self, AIML, and scripting : Loop on array of objects

RE: Loop on array of objects

by admin posted Mar 12 2018, 12:44

There are a few ways to iterate over an array.
In your code use result.length() not result.length

var result = Http.requestJSON("http://endospore.xxxx.com:85/api/Data/GetPersons"); var text = "Persons are: "; for (i = 0; i < result.length(); i++) { var person = result[i].Name + " " + result[i].Surname; text = text + person + "<br>"; }

You can also use,

var result = Http.requestJSON("http://endospore.xxxx.com:85/api/Data/GetPersons"); var text = "Persons are: "; for (person in result) { text = text + person.Name + " " + person.Surname + "<br>"; }

Or to iterate over an array's elements, or any attribute set of an object use,

var result = Http.requestJSON("http://endospore.xxxx.com:85/api/Data/GetPersons"); var text = "Persons are: "; for (person in result.element) { text = text + person.Name + " " + person.Surname + "<br>"; }


Id: 21313099
Posted: Mar 12 2018, 12:44
Updated: Mar 12 2018, 12:47
Replies: 0
Views: 2665, today: 1, week: 5, month: 23
0 0 0.0/5