Groovy JSONBuilder with Nested Array in Grails



有没有办法在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 控制器使用 render 函数以及在服务中显式使用 JSONBuilder 构建它时遇到了一些麻烦。

除了"模板"

数组中的"模板"对象没有被渲染之外,一切似乎都有效。下面是执行渲染的代码:

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 = {
        // ...

相关内容

  • 没有找到相关文章

最新更新