我在将请求参数绑定到域类中的 BigDecimal 字段时遇到了一些问题。
当我在持续时间字段中输入 25.75 时,数据被正确序列化,并且持续时间以正确的精度传递给请求中的控制器。
控制器动作:
def save() {
// params.duration is 25.75 (debugged and printed to the console)
def entry = new Entry(params)
// entry.duration is now 25
// the precision is lost..
// 125.25 converts to 125
// 1.75 converts to 1
...
}
领域类:
class Entry {
BigDecimal duration
static constraints = {
duration(min: 0.01G, max: 168.00G, scale: 2)
}
}
MySQL 数据库中的列类型为 DECIMAL(5,2)。
我错过了一些明显的东西吗?
编辑: 使用 Grails 2.2.0 版。