我有一对相当常见的模型:
class Parent {
static hasMany = [children: Child]
}
class Child {
String someProperty
}
现在我要做的是通过 Child.someProperty 执行一个组,但我在 View 上并没有太成功。
在控制器中,我可以这样做:
def children = parentInstance.children.groupBy{child -> child.someProperty}
我想要实现的是在每个someProperty
.