玩:绑定表单域的双?(Play: Bind a form field to a double?)

2019-08-01 04:45发布

也许我只是忽视的东西很明显,但我无法弄清楚如何将表单域绑定到一个双重的游戏控制器。

举例来说,假设这是我的模型:

case class SavingsGoal(
timeframeInMonths: Option[Int],
amount: Double,
name: String
)

(忽略,我使用的钱了一倍,我知道这是一个坏主意,这只是一个简单的例子)

我想结合它像这样:

object SavingsGoals extends Controller {

    val savingsForm: Form[SavingsGoal] = Form(

        mapping(
            "timeframeInMonths" -> optional(number.verifying(min(0))),
            "amount" -> of[Double],
            "name" -> nonEmptyText
        )(SavingsGoal.apply)(SavingsGoal.unapply)

    )

}

我意识到number助手只适用于整数,但我想用of[]可能会允许我结合双。 不过,我得到一个编译错误,在此:

Cannot find Formatter type class for Double. Perhaps you will need to import
play.api.data.format.Formats._  

这样做没有帮助,因为是在API中没有定义双格式。

这一切都只是问什么的表单域绑定到游戏的双重规范的方式很长的路要走?

谢谢!

编辑:4E6我指出了正确的方向。 下面是我所做的使用他的帮助:

用他的链接片段,我增加了以下内容app.controllers.Global.scala:

object Global {

    /**
     * Default formatter for the `Double` type.
     */
    implicit def doubleFormat: Formatter[Double] = new Formatter[Double] {

      override val format = Some("format.real", Nil)

      def bind(key: String, data: Map[String, String]) =
        parsing(_.toDouble, "error.real", Nil)(key, data)

      def unbind(key: String, value: Double) = Map(key -> value.toString)
    }

    /**
     * Helper for formatters binders
     * @param parse Function parsing a String value into a T value, throwing an exception in case of failure
     * @param error Error to set in case of parsing failure
     * @param key Key name of the field to parse
     * @param data Field data
     */
    private def parsing[T](parse: String => T, errMsg: String, errArgs: Seq[Any])(key: String, data: Map[String, String]): Either[Seq[FormError], T] = {
      stringFormat.bind(key, data).right.flatMap { s =>
        util.control.Exception.allCatch[T]
          .either(parse(s))
          .left.map(e => Seq(FormError(key, errMsg, errArgs)))
      }
    }

}

然后,在我的表格映射:

mapping(
    "amount" -> of(Global.doubleFormat)
)

Answer 1:

其实, 有预定义格式Double的主分支。 因此,您应该切换到2.1-SNAPSHOT打版或只是复制的实现。



Answer 2:

你并不需要,如果你有2.1版为使用全球的格式。

只需导入:

import play.api.data.format.Formats._

和使用:

mapping(
    "amount" -> of(doubleFormat)
)


文章来源: Play: Bind a form field to a double?