比方說,我有一個叫Store的類有很多員工。我的RESTful listXML方法是這樣的:REST風格的Grails:我如何在XML中包含相關實體?
def listXML = {
render Store.list() as XML
}
而結果是這樣的:
<stores>
<store id="1">
<name>My Store</name>
<employees>
<employee id="1" />
</employees>
</store>
</store>
我的問題是,我怎麼包括每個Employee類的所有數據,讓我的XML外觀像這樣?
<stores>
<store id="1">
<name>My Store</name>
<employees>
<employee id="1">
<name>John Smith</name>
<hireDate>2008-01-01</hireDate>
</employee>
</employees>
</store>
</store>
哇 - 非常感謝quickdraw答案。我很高興解決方案非常簡單! – 2009-01-19 05:46:50
嘿,沒問題。很高興我能幫上忙。 – 2009-01-19 05:47:29