8

我有以下结构的模型类:

public class User {
   public String name;
   public Long id;
}

public class Play {
   public String name;
   public User user;
}

现在我想要一个基于 Play 类的表单。所以我有一个作为输入的editPlay视图。Form[Play]在视图中,我有一个表单,它在提交时调用更新操作:

@form (routes.PlayController.update()) 
{..}

但我找不到正确的方法来绑定用户字段,我会在控制器中正确接收它:

Form<Play> formPlay = form(Play.class).bindFromRequest();
Play playObj = formPlay.get();

根据APIForm.Fieldvalue 始终是一个字符串。是否有其他方法可以自动将输入绑定到用户对象?

谢谢

4

2 回答 2

15

你可以DataBinder 在 play.scla.html 中使用自定义:

@form (routes.PlayController.update()) 
{
  <input type="hidden" name="user" id="user" value="@play.user.id"/>
}

在控制器中的方法中

public static Result update()
{
  // add a formatter which takes you field and convert it to the proper object
  // this will be called automatically when you call bindFromRequest()

  Formatters.register(User.class, new Formatters.SimpleFormatter<User>(){
    @Override
    public User parse(String input, Locale arg1) throws ParseException {
      // here I extract It from the DB
      User user = User.find.byId(new Long(input));
      return user;
    }

    @Override
    public String print(User user, Locale arg1) {
      return user.id.toString();
    }
  });
  Form<Play> formPlay = form(Play.class).bindFromRequest();
  Play playObj = formPlay.get();
}
于 2012-04-30T07:40:22.560 回答
2

我不太确定我是否理解您的问题,但基本上我一直在处理这样的表格:

 final static Form<Play> playForm = form(Play.class);
 ...
 public static Result editPlay(){
     Form<Play> newPlayForm = form(User.class).bindFromRequest();
     Play newPlay = newPlayForm.get();
     ....    
 }

我使用以下操作从操作中提供和呈现模板:

return ok(play_form_template.render(playForm));

然后在模板中:

 @(playForm: Form[Play])
 @import helper._

 @helper.form(action = routes.Application.editPlay()) {
      @helper.inputText(playForm("name"))
      ...
 }
于 2012-03-15T23:33:21.830 回答