gpt4 book ai didi

grails - map 类域

转载 作者:行者123 更新时间:2023-12-02 15:46:56 26 4
gpt4 key购买 nike

我有我的类(class)域名

class domain Factura {
String name
BigDecimal value
}

在我的html中:
<g:form>
<input type="text" name="name" />
<input type="number" step="any" name="value" />
<inpu type="submit" value="save" />
</g:form>

在我的 Controller 中
def save(Factura factura) {
//Suppose in the value I have put : 152.36
println "valor: " + factura.value => return 15236.0

//Suppose in the value I have put : 152,36
println "valor: " + factura.value => return 15236.0

}

如何返回小数?我需要152.36

最佳答案

您可以使用文本输入并将其转换为BigDecimal

改变这个

<input type="number" step="any" name="value" />


<input type="text" name="value" />

用你的保存方法
try{
params.value.toBigDecimal()
catch(e){
// error
}

关于grails - map 类域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45980382/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com