ネストされたフォームを使用した保存については多くのことがわかりますが、それらはすべて私のものとは逆の関係にあります。顧客情報belongs_toUserですが、顧客情報からユーザーの電子メールを更新したいと思います。現在、ビューは機能していますが、保存されていません。
次の関係を定義しています。
class User < ActiveRecord::Base
has_one :customer_info, dependent: :destroy
accepts_nested_attributes_for :customer_info
end
class CustomerInfo < ActiveRecord::Base
belongs_to :user
attr_accessible :user, :email
accepts_nested_attributes_for :user
end
そして、次のネストされたフォーム:
%h1 Editing customer_info
= form_for @customer_info, :validate => true do |f|
- if @customer_info.errors.any?
#error_explanation
%h2= "#{pluralize(@customer_info.errors.count, "error")} prohibited this user from being saved:"
%ul
- @customer_info.errors.full_messages.each do |msg|
%li= msg
%h2 Your Profile
= fields_for @user do |i|
.field
= i.label :email, 'Email'
= i.text_field :email
.field
= f.label :username, "Username"
= f.text_field :username
.actions
= f.submit 'Next'