0

我有两个模型:用户和个人资料。我想使用相同的表格同时向两者输入数据。我正在关注关于嵌套模型表单(修订版)的 railscast 196#。问题是,表单的第一部分生成得很好。这是第二部分(使用 field_for 的地方),它没有显示在视图中。我在 stackoverflow 中搜索了一个解决方案,有人建议以某种方式使用“构建”操作。但是,由于错误,这不起作用。

如果有人能解释我如何使它工作,我将不胜感激。这几天我一直在为这个问题苦苦挣扎。

user.rb
class User < ActiveRecord::Base
attr_accessible :email, :first_name, :last_name, :orientation, :gender, :password, :password_confirmation, :date_joined, :last_online, :date_of_birth, :location, :profiles_attributes  
    has_one :profiles   
    accepts_nested_attributes_for :profiles, allow_destroy: true                    
    has_secure_password
    validates_confirmation_of :password
    #.....#
end

profile.rb
class Profile < ActiveRecord::Base
    attr_accessible :height, :weight
    belongs_to :user
end

user/new.html.erb
<%= form_for @user do |f| %>
    <% if @user.errors.any? %>
    <div class="error_messages">
      <h2>Form is invalid</h2>
      <ul>
        <% for message in @user.errors.full_messages %>
          <li><%= message %></li>
        <% end %>
      </ul>
    </div>
  <% end %>
        <%= f.label :gender, "I am a:" %><%= f.select :gender, options_for_select([["Man", "Male"], ["Woman", "Female"]]) %><br />
        <%= f.label :orientation, "Sexsual Orientation" %><%= f.select :orientation, options_for_select([["Straight", "Straight"], ["Gay", "Gay"], ["Bi","Bi"]]) %><br />
        <%= f.label :first_Name %><br /><%= f.text_field :first_name %><br />
        <%= f.label :last_name %><br /><%= f.text_field :last_name %><br />
        Date of Birth:<%= f.date_select( :date_of_birth, :start_year => 1920, :prompt => { :day => 'day', :month => 'month', :year => 'year' }) %><br />
        <%= f.label :location %><br /><%= f.text_field :location %><br />
        <%= f.label :email %><br /><%= f.text_field :email %><br />
        <%= f.label :password %><br /><%= f.password_field :password %><br />
            <%= f.label :password_confirmation %><br /><%= f.password_field :password_confirmation %><br />

        <%= f.fields_for :profiles do |builder| %>
          <fieldset>
            <%= builder.label :height, "My height is: (cm)" %><%= builder.text_field :height %><br />
            <%= builder.label :weight, "My weight is: (kg)" %><%= builder.text_field :weight %>
          </fieldset>
        <% end %>
    <%= f.submit "Next" %>
<% end %>

<%= link_to 'Back', users_path %>

编辑:user_controller 中的新操作:(您可以看到它非常标准)

  def new       
    @user = User.new


    respond_to do |format|
      format.html # new.html.erb
      format.json { render json: @user }
    end
  end
4

1 回答 1

1

我想你需要

has_one :profile

在您的用户模型中。

做表格

 fields_for :profile

在你的 users_controller 中做

@user = User.new
@user.build_profile

has_one 关系与 has_many 的工作方式略有不同 - 请参阅http://guides.rubyonrails.org/association_basics.html#has_one-association-reference

于 2012-10-18T20:25:25.910 回答