0

我想显示类型可能是 1 或 4 或 5 的附件

${attachments} has got attachments with the attributes name, type

编辑:

<g:findAll in="${attachments}" expr="it.type==1 || it.type==4 ||  it.type==5">
       <p>File: ${it.name}, ${it.type}</p>
    </g:findAll>

我在尝试上面的方法,它没有工作,如何做到这一点。

4

1 回答 1

0
<g:each in="${attachments.findAll{[1,4,5].contains(it.type)}}">
    <p>File: ${it.name}, ${it.type}</p>
</g:each>
于 2012-10-16T12:16:25.073 回答