如何在 Groovy 中使用外键从模型中获取值?

发布于 2024-11-03 06:38:22 字数 139 浏览 5 评论 0原文

我正在使用 Journal 和 Volume 等两个模型... Volume 包含 Journal 的外键,即 Journal_id ... 现在我想从 Journal_id=1 的卷中获取数据 .... 有人可以帮我解决这个问题吗...

提前致谢

I am using two models like Journal and Volume... Volume contains foreign key of Journal, ie Journal_id ... Now i want to get datas from volumes where Journal_id=1 .... Could someone help me with this please...

Thanks in advance

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

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

发布评论

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

评论(1

墨离汐 2024-11-10 06:38:22

最简单的方法是使用 load 方法并在查询中使用它。这将阻止实际加载您拥有 ID 的日记项目,但会执行您想要返回卷的查询:

def findAllVolumesFor(Long journalId) {
    Journal journal = Journal.load(journalId)
    return Volume.findAllByJournal(journal)
}

The easiest way to do this is to create a proxy Journal item using the load method and use that in a query. That'll prevent actually loading the Journal item that you have the ID for, but will do the query that you want to return the Volumes:

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