Mongoid 및 mongodb와의 관계를 통해 has_many를 구현하는 방법은 무엇입니까? Rails 가이드 에서 수정 된이 예제를 사용하여 mongoid를 사용하여 관계형 "has_many : through"연관을 어떻게 모델링합니까? 문제는 mongoid가 ActiveRecord처럼 has_many : through를 지원하지 않는다는 것입니다. # doctor checking out patient class Physician :appointments has_many :meeting_notes, :through => :appointments end # notes ..