如何从姓氏而不是 id 获取此类的用户。
在我的示例中,我使用 REST Web 服务。
我在 Grails 中的 USER.groovy 类:
class User {
String firstName
String lastName
String zipcode }
类 UrlMappings.groovy
class UrlMappings {
static mappings = {
/user/$id" (controller: "user") {
action = [GET: "show"]
}
}
}
在 UserController.groovy 中的def 显示
def show = {
User user = User.get(params.id)
if (user) {
render user as JSON
} else {
SendNotFoundResponse()
}
}