使用 PlayFramework 2.0.1,我有一个模型:
class MyModel extends Model {
@Constraints.Required
public String someProperty;
}
class MyController extends Controller {
public static Result action() {
Form<MyModel> form = form(MyModel.class).bindFromRequest();
if (form.hasErrors()) {
// Return errors
}
else {
// Process
}
}
}
假设我用mysite.com/action?some-property=value
. 如何some-property
从请求匹配someProperty
到模型?可能吗?
因为到目前为止,它hasErrors()
起火true
以来someProperty
似乎失踪了。