0

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

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 应用程序时,它显示错误:

无法批量分配受保护的属性:配置文件

在调试时我发现用户具有以下属性:

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

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

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

4

1 回答 1

1

你试过了吗

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

?

于 2012-09-03T10:20:56.417 回答