gpt4 book ai didi

grails - 如何一般性地访问此Groovy JSON对象?

转载 作者:行者123 更新时间:2023-12-02 14:37:44 26 4
gpt4 key购买 nike

我正在使用Grails 1.3.6。我将以下JSON读入变量中...

{
"abc": {
"attr1": "value1",
"attr2": "value2"
},
"def": {
"attr1": "value1",
"attr2": "value2"
},
"ghi": {
"attr1": "value1",
"attr2": "value2"
},
...
}

如果在我的 Controller 中,我传递了一个引用JSON对象一部分的参数...
def section = params.section;   // could be "abc", "def", 'ghi", ...e

假设以上内容存储在名为“myJSONObject”的Groovy变量中,我如何访问JSON的那一部分?谢谢-戴夫

最佳答案

如果您使用 JSON.parse() 创建了myJSONObject,则可以执行以下操作:

def value = myJsonObject[section]

关于grails - 如何一般性地访问此Groovy JSON对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6549060/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com