我搜索并尝试了很多,但我无法按照自己的意愿完成它。所以这是我的问题。
我的模特是:
class User < ActiveRecord::Base
has_one :profile
accepts_nested_attributes_for :profile
end
class Profile < ActiveRecord::Base
attr_accessible :user_id, :form, :title, :name, :surname, :street, :housenumber, :zipcode, :place, :phone, :mobile, :fax, :url
belongs_to :user
end
在我看来:
<% semantic_form_for @user do |form| %>
<%= form.inputs :login, :email, :password%>
<% form.semantic_fields_for :profile do |profile| %>
<%= profile.inputs %>
<% end %>
<%= form.buttons %>
<% end %>
我的问题是,当我编辑一个人时,它会显示个人资料中的数据。我想,即使在创建用户时,也会显示配置文件中的字段。
非常感谢!
答案 0 :(得分:5)
您应该在form.semantic_fields_for:
之前添加视图<% @user.build_profile unless @user.profile %>
您可以在创建User对象之后在控制器中执行此操作。