我想显示类型可能是 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>
我在尝试上面的方法,它没有工作,如何做到这一点。