我在我的应用程序中使用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
“User”模型中的字段很少,而“Profile”模型中的first_name,last_name等个人数据也很少。我试图通过自定义设计注册表单来获取所有必需的数据,如下所示:
<%= 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>
任何人都可以告诉我我哪里出错了。
答案 0 :(得分:0)
如果first_name
和last_name
字段属于配置文件模型,那么您应该在配置文件模型中将其称为attribute_accessible
。
您的个人资料模型应该是
class Profile < ActiveRecord::Base
belongs_to :user
attribute_accessible :first_name, :last_name
end