I try to define defaul value for scala template parameter, like:

@(user: Form[User] = Form[User])

And I see compilation error:

object play.data.Form is not a value

whats wrong?

有帮助吗?

解决方案

Unfortunately it doesnt work like this, you have to define the Form's presentation. You may have in your User class:

val requestForm = Form(
    mapping("field1" -> nonEmptyText,
      "field2" -> nonEmptyText)(User.apply)(User.unapply))

And then you can use your template like this:

@(user: Form[User] = User.requestForm)

Hope this helps

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top