作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码:
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()
}
}
}
最佳答案
可以一行完成:
Machine.all.collect{ [id: it.id, name: it.name] } as JSON
关于json - 如何从Grails中的JSON列表生成JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16859731/
我是一名优秀的程序员,十分优秀!