0

我正在为我的应用程序使用 rails 3.1 和 ruby​​ 1.9.3。问题是,我在保存详细信息时收到“无法批量分配受保护的属性”。

我有用户模型:

class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# :token_authenticatable, :confirmable,
# :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :registerable,
     :recoverable, :rememberable, :trackable, :validatable

has_one :profile
accepts_nested_attributes_for :profile

attr_accessible :email, :password, :password_confirmation, :remember_me, :profile_attributes, :first_name, :last_name

end

和 Profile 模型为:

class Profile < ActiveRecord::Base

belongs_to :user

end

我在“用户”模型和“个人资料”模型中的名字、姓氏等个人数据中几乎没有字段。我正在尝试通过自定义设计注册表单来获取所有必需的数据,如下所示:

<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
<%= devise_error_messages! %>

<div><%= f.label :email %><br />
<%= f.email_field :email %></div>

<div><%= f.label :password %><br />
<%= f.password_field :password %></div>

<div><%= f.label :password_confirmation %><br />
<%= f.password_field :password_confirmation %></div>


<%= f.fields_for :profile do |builder| %>
    <div><%= builder.label :first_name, "First Name" %><br />
    <%= builder.text_field :first_name %></div>
    <div><%= builder.label :last_name, "Last Name" %><br />
    <%= builder.text_field :last_name %></div>
<% end %>


<div><%= f.submit "Sign up" %></div>

谁能告诉我哪里出错了。

4

1 回答 1

0

如果first_namelast_name字段属于配置文件模型,那么您应该attribute_accessible在配置文件模型本身中提及它。

您的个人资料模型应该看起来像

class Profile < ActiveRecord::Base
belongs_to :user
attribute_accessible :first_name, :last_name
end
于 2013-03-08T13:37:55.913 回答