我正在学习rails,但我遇到了一个问题。我的模型具有多对多的关系。很难解释我正在使用的模型,因为它们对我的工作领域来说太具体了,所以我将使用rails guide中的示例并稍作修改。
这是模型:
class Physician < ActiveRecord::Base
has_many :appointments
has_many :patients, through: :appointments
end
class Appointment < ActiveRecord::Base
attr_accessor :appointment_time
belongs_to :physician
belongs_to :patient
end
class Patient < ActiveRecord::Base
attr_accessor :name, :age
has_many :appointments
has_many :physicians, through: :appointments
end
我想要一份带有 Appointment.appointment_time 的患者名单。我可以列出所有与使用physician.patients
. 我怎样才能包括预约时间?一旦我有了患者名单,我就可以考虑查询约会,但我想知道是否有一种“rails”方式来做到这一点(类似于physician.patients_with_appointments
)。如果没有,那么有效的方法是什么?