1

我有一对相当常见的模型:

class Parent {
    static hasMany = [children: Child]
}

class Child {
    String someProperty
}

现在我要做的是通过 Child.someProperty 执行一个组,但我在 View 上并没有太成功。

在控制器中,我可以这样做:

def children = parentInstance.children.groupBy{child -> child.someProperty}

我想要实现的是在每个someProperty.

4

1 回答 1

0

我最终解决了我自己的问题。我通过简单地向 Parent 模型添加一个方法来简化功能,以返回所有具有相关 Parent id 或按所需属性排序的实例的子级。

于 2012-08-21T13:14:20.800 回答