我有 2 个非常简单的模型:
class Teacher < ActiveRecord::Base
has_one :fee, :foreign_key => 'teacher_id'
end
...
class Fee < ActiveRecord::Base
belongs_to :teacher
end
使用“查找”方法加载教师信息时,仅存在教师表信息。(数据存在于费用表中)
@teacher = Teacher.find(id)
使用调试方法:
--- !ruby/object:Teacher
attributes:
id: 7
…
presentation:
presentation_flag: true
created_at: 2013-09-16 00:38:14.000000000 Z
updated_at: 2013-09-16 00:38:14.000000000 Z
status:
last_login:
first_name:
…
但没有关于费用表。有任何想法吗 ?谢谢