我有域类:
class Template { String name; String prop1; String prop2; }
并使用 g:select: 查看
<g:select name="template.id" from="${Template.list()}" optionKey="id" onclick = "updateEditText(this.value);"/>
我需要将选定对象设置为 g:select 值(但不是字符串),我认为它应该是这样的(但它不起作用):
<g:select name="template.id" from="${Template.list()}" optionKey="id" optionValue = "${it}" onclick = "updateEditText(this.value);"/>
*it - 来自 template.list() 的对象
我的程序 updateEditText 需要从选定对象中获取所有属性:
<g: javascript> updateEditText(obj) { document.getElementByID("prop1").value = obj.prop1; document.getElementByID("prop2").value = obj.prop2; //etc } </g:javascript>
如果我使用“prop1”或“prop2”作为选项值,它可以正常工作,但这不是我需要的。谁能帮我?