Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
331 views
in Technique[技术] by (71.8m points)

Grails Domain class JSON

I have this controller:

respond :Alert.list()

It gives:

[{id: ..}, {id: ..}]

What I want:

{"alerts":[{"id":...}. {id:..}]}

How do I let the respond make into the format I want? I don't want to have a custom JSON marshaller as my dataset is big.

What will be the outcome if I do the following than having a custom marshaller?

def o = new JSONObject()
def arr = new JSONArray()
def a = new JSONObject()

alerts.each{
    a.put("id",it.id)
    ...
    arr.add(a)
}
o.put("alerts",arr)
respond o
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try it like this:

  //do your filtering here to get alertList


respond: [alerts: alertList]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...