我想在我的视图中访问我在域中设置的inList值。像这样:
<g:countrySelect name="SelectState" keys="${incidentInstance?.state.toList()}" value="${incidentInstance?.state}"/>
但它不起作用......(任何想法?)
THX
答案 0 :(得分:1)
好吧,您使用的是<g:countrySelect>
而不是<g:select>
要获取inList值(来自约束定义),您可以执行以下操作
<g:select name="state" from="${incidentInstance.constraints.state.inList}"
value="${incidentInstance?.state}"/>