教科書の更新例だと思っていたのに苦労しています。SOを検索しましたが、答えが見つかりませんでした。つまり、[送信]をクリックすると、プロファイルモデルのuser_idが消去され、他のデータは保存されません。Rails3.2.2を使用しています。
これが私が持っているものです...
ユーザーモデル...
class User < ActiveRecord::Base
attr_accessible :email, :password, :password_confirmation, :profile_attributes
has_one :profile
accepts_nested_attributes_for :profile
end
プロファイルモデル...
class Profile < ActiveRecord::Base
validates :first_name, :presence => true
validates :last_name, :presence => true
belongs_to :user
attr_accessible :first_name, :last_name
end
ユーザーコントローラー...
class UsersController < ApplicationController
def new
@user = User.new
@user.accounts_users.build()
@user.build_profile()
respond_to do |format|
format.html # new.html.erb
format.json { render json: @user }
end
end
def edit
@user = User.find(params[:id])
end
def update
@user = User.find(params[:id])
respond_to do |format|
if @user.update_attributes(params[:user])
format.html { redirect_to @user, notice: 'Profile was successfully updated.' }
format.json { head :no_content }
else
format.html { render action: "edit" }
format.json { render json: @user.errors, status: :unprocessable_entity }
end
end
end
end
ネストされたフォーム...
<%= form_for @user, :validate => true do |f| %>
<%= f.fields_for :profile do |p| %>
<fieldset>
<div class="field">
<%= p.label :first_name %>
<%= p.text_field :first_name %>
</div>
<div class="field">
<%= p.label :last_name %>
<%= p.text_field :last_name %>
</div>
<% end %>
<div class="field">
<%= f.label :email %>
<%= f.text_field :email %>
</div>
<div class="actions">
<%= f.submit 'Edit Profile', :class => "btn btn-large btn-success" %>
<%= cancel %>
</div>
</fieldset>
<% end %>
編集:新しいアクションを含めるようにUsersControllerを編集しました。新しいアクションが編集/更新アクションに影響するのはなぜですか?