Grails:基于字段的先前值的自定义验证器
我正在尝试为我的域类中的变量“amount”创建一个自定义验证器,以便新值应比之前的值大 0.50。
例如,假设上一个值为 1.0,下次该值至少应为:[上一个值 + 0.50] 或更多。
预先感谢您的帮助
I am trying to create a custom validator for variable 'amount' in my domain class, such that the new value should be greater than previous by 0.50.
For example, lets say the previous value was 1.0, next time the value should be atleast: [previous value + 0.50] or more.
Thanks in advance for the help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试阅读
domainEntity.getPersistentValue('amount')
。编辑: ...在自定义验证器中,例如:
You can try reading
domainEntity.getPersistentValue('amount')
.EDIT: ... in custom validator, like:
谢谢 Victor Sergienko,但我对您的代码做了一些修改,
区别在于这一行:
我不明白为什么
b.getPersistentValue('amount')
总是返回 null 值,我的 grails 版本是2.4.3Thx Victor Sergienko, but I do a little modification on your code
The difference is at this line :
I don't why
b.getPersistentValue('amount')
is always return null value, my grails version is 2.4.3