例如我有下一个域类
User{
String name
}
我也有这个类的 2 个对象
new User(name: "John").save()
new User(name: "Alex").save()
应该如何在 UserController 中查看“列表”操作以像这样以 JSON 格式表示 User.list()
{1: "John", 2: "Alex"}
让我说得更准确一些。我想要这样的东西:
UserController{
def list = {
render(contentType: "text/json") {
User.list().each {user->
user.id = user.name
}
}
}
但遗憾的是,这行不通。