0

我正在使用 a 来显示配置文件名称列表。

<g:select name="ProfileSelector" from='${ProfileList?.profileName}' id='ProfileSelect' noSelection="['null':' SELECT VT']" disabled="true" />

所以配置文件列表是具有配置文件名称、配置文件ID、配置文件描述的配置文件类型。在提交时,我只能访问在控制器中选择为参数的 profileName。有什么方法可以将相应 profileName 的 profileId 作为参数传递。

4

1 回答 1

5

是的,通过使用 optionKey 和 optionValue 参数。查看http://grails.org/doc/2.0.x/ref/Tags/select.html了解更多信息。

于 2012-05-03T03:03:59.827 回答