我有一些我想要使用的常见结构,我需要将其嵌套在<g:each />
中。语义解决方案似乎是创建一个taglib,但我宁愿编写GSP代码来构造结构,因为它更容易阅读/维护。
基本上,我需要这个:
<g:each ...>
//Somehow include a GSP that takes parameter "datastructure1"
//Again with "datastructure2"
</g:each>
GSP包含了参数,但它不能嵌套在<g:each />
中。我在找什么?