我在一个循环中获得了一组JSON,并希望根据它们构建一个数组(studentArray)。预先定义的'studentArray'数组或全新的数组都可以。在任何示例或文档中找不到。
json studentArray = [];
foreach i, x in studentInfoXml.selectDescendants("student").elements(){
json studentResponseJson = getStudentJson(x);
}
答案 0 :(得分:2)
我发现的唯一方法是通过显式索引分配每个值。
json studentArray = [];
foreach i, x in studentInfoXml.selectDescendants("student").elements(){
json studentResponseJson = getStudentJson(x);
studentArray[studentArray.count()] = studentResponseJson;
}