在嵌套模型轨道中获取属性3.2

时间:2012-09-03 09:54:20

标签: ruby-on-rails-3 activerecord actioncontroller actionpack

我有两个模型用户和个人资料 我想在用户和其他用户个人资料详细信息中保存用户名和密码 个人资料。
现在,
用户模型具有:

has_one :profile
accepts_nested_attributes_for :profile
attr_accessible :email, :password,:profile_attributes

个人资料模型

 belongs_to :user
 attr_accessible :firstname, :lastname

用户控制器

 def new
    @user = User.new
    @profileattr = @user.build_profile
  end

  def create
    @user = User.new(params[:user])

    if @user.save
      redirect_to root_url, :notice => "user created successfully!"
    else
      render "new"
    end
  end

视图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 %>


  <p>
    <%= f.label :email %><br />
    <%= f.text_field :email %>
  </p>
  <p>
    <%= f.label :password %><br />
    <%= f.password_field :password %>
  </p>


  <%= f.fields_for @profileattr do |pf|%>
  <p>
    <%= pf.label :firstname %><br />
    <%= pf.text_field :firstname %>
  </p>
  <p>
    <%= pf.label :lastname %><br />
    <%= pf.text_field :lastname %>
  </p>
  <% end %>

  <p class="button"><%= f.submit %></p>
<% end %>

但是,当我运行此Web应用程序时,它显示错误:

无法批量分配受保护的属性:个人资料

on debug我发现用户的属性为:

 :email:abc@gmail.com
 :password:secret

 :profile
            ---:firstname:abc
            ---:lastname:xyz

所以,而不是预期的params [:profile_attributes]视图返回params [:profile]
导致质量分配错误。那么出了什么问题?

1 个答案:

答案 0 :(得分:1)

你试过吗

  <%= f.fields_for :profile do |pf|%>