如何在 Groovy 中使用外键从模型中获取值?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是使用
load
方法并在查询中使用它。这将阻止实际加载您拥有 ID 的日记项目,但会执行您想要返回卷的查询: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: