Grails 验证依赖于其他属性

发布于 2024-11-05 06:51:43 字数 302 浏览 0 评论 0原文

使用 grails 执行此类操作的正确方法是什么:

class myDomainThing {
  String description
  MyOtherDomainThing otherThing

  static constraints = {
    description(nullable:if(otherThing))
    otherThing(nullable:if(description))
  }
}

所以我要么想要有一个指向 otherDomainThing 的链接,要么想要一个字符串描述。

What is the correct way to do something like this with grails:

class myDomainThing {
  String description
  MyOtherDomainThing otherThing

  static constraints = {
    description(nullable:if(otherThing))
    otherThing(nullable:if(description))
  }
}

So I either want there to be a link to the otherDomainThing or I want a String description.

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

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

发布评论

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

评论(2

想你只要分分秒秒 2024-11-12 06:51:43

您必须使用 Grails 自定义验证
验证器

static constraints = {
  description(validator: {
        return otherThing and !description
    })
}

You will have to use Grails custom validation using the
validator

static constraints = {
  description(validator: {
        return otherThing and !description
    })
}
无声情话 2024-11-12 06:51:43

您需要使用自定义验证器

static constraints = {
  description validator: { val, obj -> 
     if(otherthing && val) {
         false
     }
     else {
       true
     }
  }
}

,显然其中有一些伪代码围绕 otherthing

you'll need to use a custom validator

static constraints = {
  description validator: { val, obj -> 
     if(otherthing && val) {
         false
     }
     else {
       true
     }
  }
}

obviously some pseudocode in there around otherthing

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