我正在使用来显示配置文件名称列表。
<g:select name="ProfileSelector" from='${ProfileList?.profileName}' id='ProfileSelect' noSelection="['null':' SELECT VT']" disabled="true" />
因此,配置文件列表是具有配置文件名称,配置文件标识,配置文件描述的配置文件类型。提交后,我只能访问在 Controller 中选择为参数的profileName,是否可以通过任何方式将相应profileName的profileId传递为参数。
最佳答案
是的,通过使用optionKey和optionValue参数。看看http://grails.org/doc/2.0.x/ref/Tags/select.html了解更多信息。