2

我正在学习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)。如果没有,那么有效的方法是什么?

4

2 回答 2

2
physician.appointments.includes(:patients).each do |appointment|
  puts appointment.appointment_time
  puts appointment.patient.name
end

**这未经测试

据我所知,您正在寻找的 rails 方式并不存在。为了确保您没有在每个循环中加载每个循环,您可以使用包含。我不确定我是否将包含在正确的位置,因为我目前无法访问 Rails 控制台。

如果有很多记录,您可能希望使用 find_each 批量查找,但对于您的示例,这应该有效。

于 2013-08-05T03:50:59.340 回答
0

正如 phil.ts 所说:

patients = physician.patients.include(:appointments)

会成功的。

现在当你这样做时:

patients.appointment

数据库不需要额外的查询,因为 rails 知道将它们包含在第一个查询中。

于 2013-08-05T04:07:45.553 回答