我正在使用 Play Framework 1.2.5。我有几个NAme
与Age
字段相关的验证。年龄验证无法正常工作。即使年龄大于 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
如何让它发挥作用?无法弄清楚我在这里错过了什么:(
请帮忙。