gpt4 book ai didi

grails - grails 中的数据绑定(bind)异常

转载 作者:行者123 更新时间:2023-12-02 14:54:25 26 4
gpt4 key购买 nike

在 grails 中,我试图将数据绑定(bind)到命令对象,但是我遇到了一个奇怪的问题,即字符串后缀会自动(无声地)从数字中删除。例如:

class MyCommand {
int myInt
}
def test = {
def cmd = new MyCommand()
def myMap = [myInt:"123asdf"]
bindData(cmd, myMap)
boolean errors = cmd.hasErrors()
render errors
}

这将呈现 false 并且 myInt 将设置为 123。
但是,如果我尝试将 myInt 设置为“asdf123” cmd.hasErrors() 将返回 true。

为什么会发生这种情况?是否有不同的方法将数据绑定(bind)到将处理此问题的对象。
这篇文章中讨论了同样的问题,但没有提供任何解决方案: http://grails.1312388.n4.nabble.com/Data-binding-with-numbers-is-this-expected-td2073860.html

最佳答案

我不确定这是您想要的答案,但是,我认为这就是您所需要的。我对此做了很多研究,在我看来,数据绑定(bind)并不总是(提示永远)返回表单,即用户在处理无效数字时输入的确切数据。经过大量研究后,我对您的建议是使用 try catch 将文本转换为整数,如果失败,请将其设置为 null。然后将参数传递回 View 。如果值为空,则从参数中获取值。

关于grails - grails 中的数据绑定(bind)异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12630692/

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