如何在芭蕾舞女演员中丰富JSON数组

时间:2018-06-27 15:59:19

标签: ballerina

我在一个循环中获得了一组JSON,并希望根据它们构建一个数组(studentArray)。预先定义的'studentArray'数组或全新的数组都可以。在任何示例或文档中找不到。

        json studentArray = [];

        foreach i, x in studentInfoXml.selectDescendants("student").elements(){

            json studentResponseJson = getStudentJson(x);
        }

1 个答案:

答案 0 :(得分:2)

我发现的唯一方法是通过显式索引分配每个值。

    json studentArray = [];

    foreach i, x in studentInfoXml.selectDescendants("student").elements(){
        json studentResponseJson = getStudentJson(x);
        studentArray[studentArray.count()] = studentResponseJson;
    }