5

我在 Play 中发现了有趣的东西!框架表单验证。例如我有这样的形式:

case class Foo(mystring: String, myint: Int, mybool: Boolean) { // doing cool stuff here }
val myForm = Form(
    mapping(
      "mystring" -> text,
      "myint" -> number,
      "mybool" -> boolean
)(Foo.apply)(Foo.unapply))

当我绑定 Json 中不存在“mybool”的数据时,验证通过并创建一个带有“mybool = false”的对象。这是一种非常奇怪的行为,好像我将传递相同的数据,但没有“mystring”字段,我会得到Validation Errors: Map(mystring -> error.required)我希望看到的——因为该字段丢失了。

如果我将布尔字段设为可选,但我手动添加了这样的检查:

"mybool" -> optional(boolean).verifying("mybool.required", _.isDefined)

并在没有字段的情况下绑定数据,我得到了预期的错误:

Validation Errors: Map(mybool -> mybool.required)

示例数据集:

{
  "mystring": "stringHere",
  "myint": 33
}

为什么必需的检查不适用于布尔值?最好的解决方法是什么?是剧吗!错误还是我只是不明白什么?

感谢您的回答。

4

2 回答 2

3

我想这是设计使然。通常,如果您有一个布尔字段,那么您会将其绑定到一个 HTML 复选框。如果在提交表单时选中该框,则一切正常;但是,如果未选中该框,则浏览器不会将字段名称与提交的数据一起发送。基本上,未选中的框和根本不存在的元素之间没有区别,因此 Play 必须假设(对于布尔字段)该值为“false”。

于 2013-07-09T20:18:38.190 回答
0

您可以执行以下操作:

val form: Form[Boolean] = Form[Boolean](
    mapping[Boolean, Boolean](
      "state" -> optional(boolean).verifying("state.required", _.isDefined).transform(_.get, Some(_))
    )(identity)(Some(_))
  )

这将允许您强制布尔字段,覆盖播放默认行为。

我们经常有单选按钮YesNo不是复选框,它适用于

于 2019-02-23T13:47:17.567 回答