如何在<g:select/>
我的视图标签中自动使用域模型中的验证约束,或者这是不可能的?
在我的域类中,我有一个int
带有size
约束的属性:
int texture
static constraints = {
texture range:0..8
}
现在,在我看来,我想使用一个选择来允许用户选择正确的值。我目前有这个:
<g:form action="save">
<div class="fieldcontain ">
<label for="foamScore.texture">
Foam Texture
</label>
<g:select name="foamScore.texture" from="${0..8}"/>
</div>
</g:form>
如果可能的话,我想避免重复0..8
视图中的部分。