有没有一种方法可以在Groovy中使用JSONBuilder嵌套JSON数组?更明确地说,我有一个Grails应用程序,需要渲染如下所示的内容:

{
    "event": {
        "type": "1.0",
        "templates": [
            {
                "template":{
                    "window": {
                        "type1": "id-1",
                        "type2": "id-2"
                    },
                    "object": {
                        "id-1": {
                            "type": "classA",
                            "others": [
                                {
                                    "var": "thing1",
                                    "mixed": "no"
                                }
                            ]
                        },
                        "id-2": {
                            "type": "classB",
                            "others": [
                                {
                                    "var": "thing1",
                                    "mixed": "yes"
                                }
                            ]
                        }
                    }
                }
            }
        ]
    }
}

我在让Grails Controller 使用render函数以及在服务中显式使用JSONBuilder进行构建时遇到了一些麻烦。

除了未显示"template"数组中的"template"对象外,其他所有内容似乎都可以正常工作。这是执行渲染的代码:
render(contentType: "text/json") {
    event {
        type = "1.0"
        templates = array {
            template = {
                window = {
                    type1 = "id-1"
                    type2 = "id-2"
                }
                object = {
                    "${ 'id-1' }" {
                        type = "classA"
                        others = array {
                            otherArr(var:"thing1", mixed:"yes")
                        }
                    }
                    "${ 'id-2' }" {
                        type = "classB"
                        others = array {
                            otherArr(var:"thing1", mixed:"yes")
                        }
                    }
                }
            }
        }
    }
}

最佳答案

您缺少array闭包内的级别。试试这个:

templates = array {
  item {
    template = {
      window = {
        // ...

09-05 16:35