我自己也在努力解决这个问题,所以我希望我能很好地解释它。我有一个带有嵌套模型的表格。事情的简化版本如下(使用 Rails 3.0.13);
#parent.rb
class Parent < ActiveRecord::Base
has_many :children, :dependent => destroy
accepts_nested_attributes_for :children, :allow_destroy => true
validates_presence_of :thing
validate :children_unique
def children_unique
errors[:base] << "You have the same child listed more than once!" if self.children.map{|x| [child.name, child.age]} != self.children.map{|x| [child.name, child.age]}.uniq
end
end
#child.rb
class Child < ActiveRecord::Base
belongs_to :parents
end
#parents_controller.rb
class ParentsController < ApplicationController
load_and_authorize_resource :parent #Using cancan for authorization. This calls @parent = Parent.find(params[:id]); authorize! :update, @parent; at the start of the update method
def update
if @parent.update_attributes(params[:operation])
redirect_to @parent.admission, :notice => 'Operation was updated successfully'
else
flash.now[:warning] = "Parent was NOT updated!"
render :action => "edit"
end
end
end
到目前为止,一切都很标准。我的表格也以非常标准的方式设置。parent_form.fields_for :children
我为 fields_for 块中的孩子调用并渲染部分内容。每个子部分表单都包含一个删除链接,当单击它时,javascript 用于设置隐藏字段,因此 _destroy 的属性设置为“1”,并且部分从视图中隐藏。
这在大多数情况下都很有效,但我发现的奇怪问题如下;
如果我正在编辑一个已经有 2 个孩子的现有父母,并且我删除了其中 1 个孩子,然后将“事物”设置为空白,则表单无法按预期验证(因为“事物”不存在)并且编辑视图被重新渲染。结果看来,我删除的孩子又出现了!其隐藏的 _destroy 字段设置为“true”,如果我再次填写“事物”并提交表单,更新后的父级只有 1 个子级。
我通过向嵌套的子 div 添加一个条件样式标签来处理这个问题,<div class='fields'<%= " style='display: none;'" if f.object._destroy %>>
因此如果在尝试更新记录之前将其删除,它将不再出现。这实现了它的目标,但是,如果我这样做并提交表单而不更正空的“事物”字段,那么模型再次验证失败,并且在出现的下一个编辑表单中,我添加一个与之前删除的相同的新子并填写“事物”字段,模型现在无法通过children_unique
验证,即使第一个相同的孩子的 _delete 属性设置为“真”。
很明显,我在这里束手无策,我尝试了多种替代方法和修改,这是迄今为止我想出的最好的方法。它非常接近,但我仍然有这种奇怪的边缘情况,在实践中可能永远不会真正发生,但这表明我不太了解我的控制器和模型的交互方式。
有人可以让我直截了当吗?