3

这些是我的模型:

class Parent < ActiveRecord::Base
    has_one :child, :dependent => :destroy
end

class Child < ActiveRecord::Base
    belongs_to :parent
    accepts_nested_attributes_for :parent
end

我的目标是在创建孩子时更新 1 个父属性(电子邮件)(这意味着最终用户位于控制器操作为“新”的子表单上)

Hay que tener en cuenta que simpre cuando quiera crear el child,existe ya antes de antes un parent en la db。

我的孩子控制器:

def new
    @child = Child.new
    @child.parent = current_parent
end 


def create
    @child = Child.new(params[:child])
    @child.parent = current_parent


    respond_to do |format|
        if @child.save
        #.....
        else
            format.html { render :action => "new" }
        end
    end
end

子表:

<% form_for @child, :html => {:multipart => true} do |f| %>
......
<% f.fields_for :parent do |p| %>
    <%= p.label :email, t(:label_child_email), :req => true %>
    <%= p.text_field :email, :class => "field" %>
<% end %>

<%end%>

当用户点击保存按钮时,他们会得到:

找不到 ID = 4147 的父 ID =

和参数:

{"commit"=>"Save",
     "child"=>{
         ...........
         "parent_attributes"=>{"email"=>"blabla@dada.com", "id"=>"4147"
     },
         ..........
}

你知道出了什么问题吗?

谢谢 !

4

1 回答 1

0

您构建孩子的方式导致了问题。尝试以下

def new
    @child = current_parent.build_child
end 

def create
    @child = current_parent.build_child(params[:child])
    // more code
end

在这里查看 build_association 和 create_association

于 2013-07-26T03:00:38.100 回答