我正在尝试从 grails 中的 3 个域中获取列表(类似于任何常规编程语言中的内部连接)
这是我的域名
class Category{
Integer id
String name
}
class Tag{
Integer id
String name
}
class Content{
Integer id
Category category
Tag tag
String text
}
//--------
def contentInstance = Content.findAllWhere(id:id.toInteger())
我希望列表中的 Content.text、Category.name 和 Tag.name 能够在 View 中显示 谢谢