新手,看起来可以将数字约束应用于 Ints 和 Longs,但不能应用于 Doubles。
鉴于不能绑定/取消绑定具有 Double 属性的案例类,这有点令人作呕;IE
case class Foo(orderTotal: Double)
// no dice, need a Double but get an Int (same deal with longNumber)
val form = Form(mapping('orderTotal -> number)(Foo.apply)(Foo.unapply) )
有人有解决方法吗?似乎是一个疏忽,不是吗?你会认为 Double 将是一个相当普遍的要求......