如何获取具有指定条件的所有详细信息对象?

发布于 2024-11-07 16:14:53 字数 357 浏览 3 评论 0原文

class A {
  String title
  static hasMany = [details: Detail]
}

class Detail {
  enum Type { ONE, TWO }

  String name
  Type type

  static belongsTo = [a: A]
}

如何获取指定对象 a 的所有详细信息类型 ONE 的列表?

我尝试过

def all_one = A.get(params.id).details.findByType(Detail.Type.ONE)

,但不起作用。

I have

class A {
  String title
  static hasMany = [details: Detail]
}

class Detail {
  enum Type { ONE, TWO }

  String name
  Type type

  static belongsTo = [a: A]
}

How can I get list of all Details type ONE for specified object a?

I tried

def all_one = A.get(params.id).details.findByType(Detail.Type.ONE)

but it does not work.

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

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

发布评论

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

评论(1

断爱 2024-11-14 16:14:53

我认为您应该能够使用 Groovy 集合 API 来执行以下操作:

A.get(params.id).details.findAll { it.type == Detail.Type.ONE }

或者,您也许可以从详细信息备份:

Detail.findByAAndType( A.get(params.id), Detail.Type.ONE )

虽然我还没有测试过...

I think you should be able to use the Groovy collections API to do:

A.get(params.id).details.findAll { it.type == Detail.Type.ONE }

Or, you might be able to go from the Detail back up with:

Detail.findByAAndType( A.get(params.id), Detail.Type.ONE )

Though I haven't tested that out...

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