Pregunta

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?

¿Fue útil?

Solución

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top