初學者在這裏,通過跳入項目學習Ruby on Rails。這個問題可能是純粹的ruby,與rails沒有任何關係。我也想指出我正在使用Active_Admin。使用類變量
我有以下2類:所有者和電話。
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
它看起來像我應該檢討鎬頭書,跳入軌道之前改進我的紅寶石。
感謝