到目前为止,我有两个模型,用户和个人资料
Class User < ActiveRecord::Base
has_one :profile
accepts_nested_attributes_for :profile
Class Profile < ActiveRecord::Base
belongs_to :user
在我的活动管理员模型上
form do |f|
f.inputs "User" do
f.input :email
#code to get the profile data
end
f.action :submit
end
所以我想在用户表单上获取配置文件数据,我尝试了几件事,但我无法获得它们。