Grails 域类对字段之间关系的约束

发布于 2024-08-17 08:38:56 字数 396 浏览 8 评论 0原文

我需要在 Grails 中编写 Domain 类约束,它表示一个整数字段必须大于或等于另一个。

当我编写这样的代码时:

class MyDomain {

 String title
 int valueMin = 1
 int valueMax = 1

 static constraints = {
  valueMin(min:1)
  valueMax(min:valueMin)
 }
}

我收到错误:

Caused by: groovy.lang.MissingPropertyException: No such property: valueMin for class: MyDomain

请问有什么想法吗?

I need to write Domain class constraint in Grails which says that one integer field must be greater or equal than the other.

When I write the code like this:

class MyDomain {

 String title
 int valueMin = 1
 int valueMax = 1

 static constraints = {
  valueMin(min:1)
  valueMax(min:valueMin)
 }
}

I'm getting error:

Caused by: groovy.lang.MissingPropertyException: No such property: valueMin for class: MyDomain

Any idea, please?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

死开点丶别碍眼 2024-08-24 08:38:56

http://grails.org/doc/latest/ref/Constraints/validator.html

这或多或少应该有效(未经测试)

class MyDomain {

 String title
 int valueMin = 1
 int valueMax = 1

 static constraints = {
  valueMin(min:1)
  valueMax(validator:{
    value, reference ->
    return value > reference.valueMin
  })
 }
}

http://grails.org/doc/latest/ref/Constraints/validator.html

This should more or less work (not tested)

class MyDomain {

 String title
 int valueMin = 1
 int valueMax = 1

 static constraints = {
  valueMin(min:1)
  valueMax(validator:{
    value, reference ->
    return value > reference.valueMin
  })
 }
}
心如狂蝶 2024-08-24 08:38:56

这是行不通的,因为约束是静态代码块,只能访问静态变量。

因此,如果您愿意,您可以编写自己的自定义约束:看看这个链接:
http://grails.org/doc/latest/guide/single.html# 7.。验证

This wont work, because the constraints are a static block of code which will only have access to static variables.

So, you could write your own customized cosntraint if you want: take a look at this link:
http://grails.org/doc/latest/guide/single.html#7. Validation

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文