Grails 获取 hasMany 中的任何子级

发布于 2024-11-17 13:29:03 字数 357 浏览 1 评论 0原文

我有一个域类,其中有许多其他域类。我想要任何一个孩子,不在乎是哪一个。例如,

class MyDomainClass {
  static hasMany = [thingies:OtherDomainClass]
}

我可以用愚蠢的方式做到这一点,例如:

def findOne
myInstance.thingies.each{
  findOne=it
}

但是有更好的方法吗,例如:

def findOne = myInstance.thingies.grabTheMostConvenientOne()

I have a domain class which has many of another domain class. I want any one of the children and don't care which. Example

class MyDomainClass {
  static hasMany = [thingies:OtherDomainClass]
}

I can do this the stupid way like:

def findOne
myInstance.thingies.each{
  findOne=it
}

But is there a better way like:

def findOne = myInstance.thingies.grabTheMostConvenientOne()

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

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

发布评论

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

评论(1

似狗非友 2024-11-24 13:29:03

thingies 是一个集合,因此您拥有 收藏供您使用。

您可以执行此操作的一个简单方法是:

def one = myInstance.thingies.asList().first()

但是,您可能希望首先确保集合实际上具有一些元素。文档没有明确说明如果列表为空, first() 会抛出 IndexOutOfBoundsException,但我感觉它仍然可能会抛出。如果是这种情况,您可能想要:

def one = myInstance.thingies.size() > 0 ? myInstance.thingies.asList().first() : null

或者,如果您想以牺牲一些可读性为代价变得超级简洁,您可以使用这种方法(由 John Wagenleitner 提供)

def one = myInstance.thingies?.find { true }

thingies is a Collection, so you have everything from Collection at your disposal.

A simple way you might do this is:

def one = myInstance.thingies.asList().first()

However, you probably want to make sure the collection actually has some elements first. The documentation doesn't explicitly say that first() throws an IndexOutOfBoundsException if the list is empty, but I have a feeling it still might. If that's the case, you probably want:

def one = myInstance.thingies.size() > 0 ? myInstance.thingies.asList().first() : null

Or, if you want to be super-concise at the expense of some readability, you can use this approach (courtesy John Wagenleitner):

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