如何從lastName獲取此類的用戶,而不是來自id。
在我的例子中,我使用了REST Web服務。
我班USER.groovy Grails中:Grais Rest:從「lastName」獲取Json對象而不是「id」
class User {
String firstName
String lastName
String zipcode }
類UrlMappings.groovy
class UrlMappings {
static mappings = {
/user/$id" (controller: "user") {
action = [GET: "show"]
}
}
}
高清顯示在UserController.groovy
def show = {
User user = User.get(params.id)
if (user) {
render user as JSON
} else {
SendNotFoundResponse()
}
}
我的問題是檢索來自其他字段「ID」 – user1297967
你已經嘗試過的一個JSON對象? –