gpt4 book ai didi

loops - Grails-仅在g:each中的前十个值

转载 作者:行者123 更新时间:2023-12-02 07:02:26 27 4
gpt4 key购买 nike

<g:each in="${checking}" status="i" var="checking2">
<g:if test="${i<10}" >//Break The Loop</g:if>
//Do My Work Here
</g:each>

在上面的示例中,如果有可能仅从“检查”中获取前十个值。假设检查返回100个值,我只想访问前十个值。

我知道可以通过在 Controller 中使用max:10并仅返回列表中的10个值来实现,但是如上所述。

PS:我对此很陌生。

最佳答案

试试这样的事情

<g:each in="[0..9]" var="index">
<g:set var="item" value="${checking[index]}" />
//do whatever you want with item
</g:each>

简而言之,请在0..9范围内进行迭代,并使用index作为列表的索引。

关于loops - Grails-仅在g:each中的前十个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18225255/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com