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