gpt4 book ai didi

grails 3 gsp 使用域对象约束失败

转载 作者:行者123 更新时间:2023-12-03 13:40:35 26 4
gpt4 key购买 nike

在 grails 2 中,我们能够在 gsp 中引用域对象约束,以保持 html 5 配置干燥。在 grails 3(尝试了 3.1.10 和 3.2.0.RC1)上,我在 grails 2 中成功测试的代码出现错误。我正在尝试引用属性电话中的约束匹配并将其用于 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>

异常(exception)情况:

网址 /中断/创建类(class) java.lang.NullPointerException异常信息 请求处理失败;嵌套异常是 org.grails.gsp.GroovyPagesException:处理 GroovyPageView 时出错:[views/disruption/create.gsp:92] 执行标记时出错:在行 [58] 上评估表达式 [disruption.constraints.phone.matches] 时出错:无法获取空对象上的属性“电话”引起的 无法在空对象上获取属性“电话”

最佳答案

领域对象需要使用constrainedProperties,命令对象需要使用constraintsMap,见下面的例子。

            <g:textField name="phone" style="width: 7em" class="form-control" title="Phone 10 digits" pattern="${disruption.constrainedProperties.phone.matches}" maxlength="10" placeholder="##########" value="${disruption?.phone}"/>

或命令对象

            <g:textField name="phone" style="width: 7em" class="form-control" title="Phone 10 digits" pattern="${searchCommand.constraintsMap.phone.matches}" maxlength="10" placeholder="##########" value="${searchCommand?.phone}"/>

关于grails 3 gsp 使用域对象约束失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39498398/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com