有没有办法在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"
}
]
}
}
}
}
]
}
}
我在使用render
函数以及在服务中显式使用JSONBuilder时,让我的Grails控制器构建它时遇到了一些麻烦。
除了“模板”数组中的“模板”对象没有呈现之外,一切似乎都有效。以下是执行渲染的代码:
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")
}
}
}
}
}
}
}
答案 0 :(得分:1)
你错过了array
关闭内的关卡。试试这个:
templates = array {
item {
template = {
window = {
// ...