0

アプリケーションにrails3.1とruby1.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

そしてプロファイルモデルは:

class Profile < ActiveRecord::Base

belongs_to :user

end

「ユーザー」モデルにはフィールドがほとんどなく、「プロファイル」モデルには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>

誰かが私がどこで間違っているのか教えてもらえますか?

4

1 に答える 1

0

first_nameおよびフィールドがプロファイル モデルのものである場合は、プロファイル モデル自体のlast_nameように言及する必要があります。attribute_accessible

あなたのプロファイルモデルは次のようになります

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