我在数组中显示一些值。我想将列表限制为任意值,稍后按日期限制。
在我的模型中,帐户有很多余额。并且有很多余额,比如一年,并且每天都有显示。
<g:each var="account" in="${account.list(sort:name)}">
<tr>
<td>${account.name}</td>
<g:each var="balance" in="${account.balances.sort{it.date}.reverse()}">
<td>${balance.amount}</td>
</g:each>
</tr>
</g:each>
答案 0 :(得分:-1)
刚修改为
<g:each var="balance" in="${account.balances.sort{it.date}.reverse().take(10)}">