我有一个轨道设置,如:
class Person
has_and_belongs_to_many :sports
...
end
class Checkin
belongs_to :person
...
end
class Sport
attr_accessible :name
has_and_belongs_to_many :people
...
end
name
我想获取某一天的所有人员签到,但仅限于他们拥有带有“棒球”的 HABTM 记录的地方。我怎样才能做到这一点?