Aktualizacja Platinum serwis i zrobić swój własny projekt 3D avatar
Self, AIML, and scripting : Loop on array of objects

RE: Loop on array of objects

w admin wysłany 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>"; }


Identyfikator: 21313099
Wysłany: Mar 12 2018, 12:44
Aktualizacja: Mar 12 2018, 12:47
Odpowiedzi: 0
Widok: 2664, dziś: 3, tydzień: 4, miesiąc: 22
0 0 0.0/5