我有一个课程如下:
public class NoteForm {
public Integer id;
@Constraints.Required
public Integer userId;
@Constraints.Required
public String note;
// cant get any of the following to work
public Int[] tags;
public String[] tags;
public List<int> tags;
}
这样的控制器动作:
@BodyParser.Of(BodyParser.Json.class)
public Result updateNote(){
Form<NoteForm> noteForm = NOTE_FORM.bind(request().body().asJson());
//also have tried the following
//Form<NoteForm> noteForm = NOTE_FORM.bindFromRequest();
if(noteForm.hasErrors()){
return badRequest(noteForm.errorsAsJson());
}else{
noteService.saveNote(noteForm.get());
return jsonResult(ok(Json.toJson("Save Succeeded")));
}
}
当我使用类似于以下内容的json对象从$ .ajax发布JSON时:
{
"id":"1",
"userId":"1",
"note":"adsfadsfdsaaf",
"tags":["5","6"]
}
我无法获取表单的标签属性来绑定,我做错了什么?
我目前正在使用以下代码解决此问题,但我无法使用表单助手来使用Play框架验证:
NoteForm note = Json.fromJson(json, NoteForm.class);
答案 0 :(得分:1)
我能够使用以下方式完成这项工作:
public List<Integer> tags;
并使用这样的表单绑定:
Form<NoteForm> noteForm = formFactory.form(NoteForm.class).bind(request().body().asJson());
在绑定后记录noteForm
给我这个(使用你的输入):
Form(of=class models.NoteForm, data={note=adsfadsfdsaaf, id=1, tags[1]=6, userId
=1, tags[0]=5}, value=Optional[models.NoteForm@5cd20029], errors={})