东道你自己的机器平台的 机器人自由企业平台机器人
Self, AIML, and scripting : Loop on array of objects

RE: Loop on array of objects

通过 admin 发布 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
发布: Mar 12 2018, 12:44
更新: Mar 12 2018, 12:47
答复: 0
的风景: 2669, 今天: 5, 周: 9, 一个月: 27
0 0 0.0/5