我有一个g:select语句如下所示:
<g:select id="gearbox" name="gearbox.id" from="${com.nppc.mes.energyusage.Gearbox.list()}" optionKey="id" optionValue="${ {"${it.gearboxType} - (${it.gearboxRatio})"} }" required="" value="${gearboxVoltageInstance?.gearbox?.id}" class="many-to-one"/>
我添加了一个optionValue属性:optionValue="${ {"${it.gearboxType} - (${it.gearboxRatio})"} }"
这可以按我的意愿运作。
但是,我想展示我的域对象,Gearboxes到处都是一样的。我创建了一个模板,并且能够在show.gsp上使用g:render标记。
我无法弄清楚如何让这样的事情发挥作用:
optionValue="<g:render template="/shared/gearbox" model:="[gearbox:it]"/>"
是否可以使用模板生成进入optionValue的内容?
答案 0 :(得分:0)
你可以破解它,但对我来说感觉就像糟糕的设计。
执行类似操作的正确方法似乎是为您的Gearbox域类添加辅助方法
static transients = [ 'renderedValue' ]
def getRenderedValue(){
"$gearboxType - $gearboxRatio"
}
然后,你可以调用optionValue =“$ {it.renderedValue}”。
此外,如果在域类中指定toString(),则会使用它来生成默认的渲染值。
答案 1 :(得分:0)
标签可以用作Groovy代码中的常规函数。像:
optionValue="${g.render(template: '/shared/gearbox', model: [gearbox: it])}"