这里是初学者,通过跳入一个项目来学习 ruby on rails。这个问题可能是纯红宝石,与rails无关。我还想指出我正在使用 Active_Admin。
我有以下两个类:所有者和电话。
class Owner < ActiveRecord::Base
attr_accessible :email, :password,
has_many :phones
end
class Phone < ActiveRecord::Base
attr_accessible :owner_id :model
belongs_to :owner
end
我将如何从手机模型中访问所有者的电子邮件,例如:
form do |f|
f.inputs "Phone Details" do
f.input :model
f.input :owner_id # This is where I want the email, not the owners id.
end
f.buttons
end
看来我应该在跳入铁轨之前复习一下镐书并完善我的红宝石。
谢谢