2

(这是对此处提出的问题的后续问题)

我正在使用 Groovy 的 JsonBuilder 动态生成以下 JSON:

{
    "type": {
        "__type": "urn",
        "value": "myCustomValue1"
    },
    "urn": {
        "__type": "urn",
        "value": "myCustomValue2"
    },
    "date": {
        "epoch": 1265662800000,
        "str": "2010-02-08T21:00:00Z"
    },
    "metadata": [{
        "ratings": [{
            "rating": "NR",
            "scheme": "eirin",
            "_type": {
                "__type": "urn",
                "value": "myCustomValue3"
            }
        }],
        "creators": [Jim, Bob, Joe]
    }]
}

使用此代码:

def addUrn(parent, type, urnVal) {
    parent."$type" {
        __type "urn"
        "value" urnVal
    }
}

String getEpisode(String myCustomVal1, String myCustomVal2, String myCustomVal3) {    
    def builder = new groovy.json.JsonBuilder()
    builder {
        addUrn(delegate, "type", myCustomVal1)
        addUrn(delegate, "urn", "some:urn:$myCustomVal2")
        "date" {
            epoch 1265662800000
            str "2010-02-08T21:00:00Z"
        }
       "metadata" ({
                ratings ({
                        rating "G"
                        scheme "eirin"
                        addUrn(delegate, "_type", "$myCustomVal3")
                })
                creators "Jim", "Bob", "Joe"                    
        })
    }

    return root.toString();
}

由于StackOverflowError第三调用addUrn(在嵌套ratings元素下。如果我将该行注释掉,它会完美运行(除了我缺少必要的信息块)。

  1. 为什么会这样?
  2. 如何将委托设置为直接父级,例如ratings

我试过使用 metaClass 无济于事。

4

1 回答 1

3

这很丑陋(LOL),但会给你预期的结果:

def addUrn(parent, type, urnVal) {
    parent."$type" {
        __type "urn"
        "value" urnVal
    }
}

String getEpisode(String myCustomVal1, String myCustomVal2, String myCustomVal3) {
    def builder = new groovy.json.JsonBuilder()
    def root = builder {
        addUrn(delegate, "type", myCustomVal1)
        addUrn(delegate, "urn", "some:urn:$myCustomVal2")
        "date" {
            epoch 1265662800000
            str "2010-02-08T21:00:00Z"
        }
        "metadata" ([{([
                "ratings" ([{
                        rating "G"
                        scheme "eirin"
                        this.addUrn(delegate, "_type", "$myCustomVal3")
                }]),
                creators ("Jim", "Bob", "Joe")
        ])}])
    }

    println builder.toPrettyString()
}

笔记:-

  • 在上一个问题中,我说代表必须指代直系父母是不正确的。实际上它确实指的是直系父母。相反,我们必须在调用方法时引用脚本(它具有 addUrn方法),因此this在调用addUrn内部评级时使用。或者,您可以将“评级”发送到类似于addUrn.
  • 括号、链括号和方括号的使用和顺序对于您在“元数据”之后看到的内容很重要。在这里理解这将很麻烦。但唯一需要注意的是坚持使用方法调用、声明列表和使用闭包的基础知识。尝试每行缩进每个大括号,您将能够抓住潜在的魔力。:)
  • StackOverFlow 错误的原因是该方法getEpisode无法访问addUrn脚本拥有的方法。

直接在Groovy Web Console中测试

于 2013-06-28T03:40:28.083 回答