在 grails 2 中,我们能够在 gsp 中引用域对象约束,以保持 html 5 配置干燥。在 grails 3 上(尝试了 3.1.10 和 3.2.0.RC1)我在 grails 2 中成功测试的代码出现错误。我试图在属性 phone 中引用约束匹配并将其用于 HTML 5 模式。脚手架用于生成此代码,但对于 Grails 3,脚手架生成使用字段插件,因此我看不到该代码。有任何想法吗?
这是域对象代码:
class Disruption {
static constraints = {
phone(matches:/^[0-9]{10}$/, nullable:true)
email(email:true, nullable:false)
}
String name
String phone
String email
这是gsp代码:
<div class="form-group ${hasErrors(bean: disruption, field: 'phone', 'error')}">
<label for="phone" class="control-label col-sm-3">
Phone
</label>
<div class="col-sm-2">
<g:textField name="phone" style="width: 7em" class="form-control" title="Phone 10 digits" pattern="${disruption.constraints.phone.matches}" maxlength="10" placeholder="##########" value="${disruption.phone}"/>
</div>
</div>
这是一个例外:
URI /disruption/create Class java.lang.NullPointerException 消息请求处理失败;嵌套异常是 org.grails.gsp.GroovyPagesException:处理 GroovyPageView 时出错:[views/disruption/create.gsp:92] 执行标签时出错:在 [58] 行上评估表达式 [disruption.constraints.phone.matches] 时出错:无法获取空对象上的属性“电话”由无法获取空对象上的属性“电话”引起