也许我只是忽视的东西很明显,但我无法弄清楚如何将表单域绑定到一个双重的游戏控制器。
举例来说,假设这是我的模型:
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)
)