gpt4 book ai didi

json - 如何从Grails中的JSON列表生成JSON

转载 作者:行者123 更新时间:2023-12-02 15:32:42 25 4
gpt4 key购买 nike

我有以下代码:

package xxx

import javax.ws.rs.Path
import javax.ws.rs.GET
import javax.ws.rs.Produces
import grails.converters.JSON
import org.json.simple.JSONObject


@Path('/api/machine')
class MachineService {

@GET
@Produces(['application/json'])
def String readAll() {
def List<Machine> z = new ArrayList<Machine>(Machine.findAll())
def List<String> list = new ArrayList<String>()

for (i in z) {
list.add([id: i.getId(), name: i.getName()] as JSON).toString()
}


}
}

我想将 列表加入一个JSON中并返回它。你能给我看看代码示例吗?

谢谢

最佳答案

可以一行完成:

Machine.all.collect{ [id: it.id, name: it.name] } as JSON

关于json - 如何从Grails中的JSON列表生成JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16859731/

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