ここに書かれていることを実践してください: ScalaForms、私は次のフォームを作成しました:
val personCreationForm = Form(
tuple (
"name" -> nonEmptyText,
"age" -> number verifying (min(0), max(100)) /*ERROR*/
) verifying ("Wrong entry", result => result match {
case (name, age) => true
})
)
ただし、エラーは次のようにverifying
述べていvalue verifying is not a member of (java.lang.String, play.api.data.Mapping[Int])
ます。
参照されている例のように、mapping
代わりに を使用tuple
しても違いはありません。ここで何が問題なのですか?