许多人之间的关系在grails中造成问题

时间:2015-03-11 14:23:24

标签: mongodb grails

我必须在域类中,它们之间有很多很多关系。像下面的第一节

class HealthCenter {
    List <FieldOfficer> fieldOfficers
    static hasMany = [fieldOfficers:FieldOfficer]
    static belongTo = FieldOfficer
}

第二课

class FieldOfficer{
    List<HealthCenter> healthCenters
    static hasMany = [healthCenters : HealthCenter]
}

我如何访问healthCenters分配给fieldOfficers以外的所有值,而不是以下

List<HealthCenter> healthCenters1
    healthCenters1 = fieldOfficers.healthCenters
    healthCenters1.each{i ->
    print i
}

0 个答案:

没有答案