値を含むフォームを表示しようとしていますが、うまくいきません。
私の行動:
public static Result login() {
User user = new User();
user.name = "Murilo";
Form<User> userForm = form(User.class);
return ok(login.render(userForm.fill(user)));
}
そして私のhtml:
@(myForm : play.data.Form[models.User])
<!DOCTYPE html>
<html>
<head>
</head>
<body>
@helper.inputText(myForm("name"))
</body>
</html>
しかし、アクセスすると、次のエラーがスローされます。
type mismatch; found : play.data.Form.Field required: play.api.data.Field