gpt4 book ai didi

java - 玩!验证不起作用

转载 作者:行者123 更新时间:2023-12-01 14:52:11 29 4
gpt4 key购买 nike

我使用的是 Play Framework 1.2.5。我有几个与 NAmeAge 字段相关的验证。年龄验证无法正常工作。即使年龄大于 18 岁,我也会收到错误消息。

下面是action方法中的验证代码:

Error nameError = validation.required(txtName).error;
Error ageError = validation.required(txtAge).error;
Error minAgeError = validation.min(txtAge,18).error;

if(nameError!=null)
System.out.println(nameError.message("Customer Name"));

if(ageError!=null)
System.out.println(ageError.message("Customer Age"));

if(minAgeError!=null)
System.out.println(minAgeError.message("Minimun Age"));

下面是消息文件条目:

validation.required=%s is required
validation.min=%s cannot be lower than %2$d

如何让它发挥作用?无法弄清楚我在这里错过了什么:(

请帮忙。

最佳答案

您没有根据文档使用验证逻辑。试试这个:

public static void hello(String txtName, Integer txtAge) {
validation.required(txtName);
validation.required(txtAge);
validation.min(txtAge, 18);

if(validation.hasErrors()) {
for(Error error : validation.errors()) {
System.out.println(error.message());
}
}
}

关于java - 玩!验证不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14729379/

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