场景:具有可传递字段,总成本的订单显示视图。传递字段不是由默认字段生成的视图呈现的,因此我必须手动指定我想要查看的字段。以下工作正常:
<f:with bean="customerOrder">
<f:display property='token' wrapper="displayText"/>
<f:display property='lineItems' wrapper="displayCollection"/>
<f:display property='total' wrapper="displayMoney"/>
<f:display property='dateCreated' wrapper="displayDate"/>
<f:display property='customer' wrapper="displayLink"/>
</f:with>
displayCollection部分由views / _fields / displayCollection /中的_displayWrapper.gsp文件处理,如下所示:
<li class="fieldcontain" style="list-style-type: none;">
<span class="property-label">${label}</span>
<span class="property-value" aria-labelledby="${property}-label">
<ul>
<g:each in="${value}" var="item">
<li>${item?.toString()}</li>
</g:each>
</ul>
</span>
</li>
这是一个通用的集合显示字段。它适用于购物车中的文章,用户发布的帖子等。唯一的是,集合成员仅显示为文本,而不是链接。
如果$ {value}是单个类成员而不是集合,则下面的_displayWrapper.gsp工作正常。
<li class="fieldcontain" style="list-style-type: none;">
<span class="property-label">${label}</span>
<span class="property-value" aria-labelledby="${property}-label">
<g:link action="show" controller="${property}" id="${value?.id}">${value?.toString()}</g:link>
</span>
</li>
问题是,如何从集合的成员派生控制器名称,该集合是通过$ {value}获得的?
我已经安装了视图模板,没有运气。同样,我查看了字段插件代码,也没有运气。
有什么想法吗?
答案 0 :(得分:1)
<li class="fieldcontain" style="list-style-type: none;">
<span class="property-label">${label}</span>
<span class="property-value" aria-labelledby="${property}-label">
<ul>
<g:each in="${value}" var="item">
<li>
<g:link controller="${item.class.getSimpleName()[0].toLowerCase() + item.class.getSimpleName().substring(1)}" action="show" id="${item.id}">
${item?.toString()}
</g:link>
</li>
</g:each>
</ul>
</span>
</li>
还可以编写自定义标记来执行此操作。