我正在努力讓自己的頭腦對這個問題感興趣,所以我希望我能夠很好地解釋它。我有一個嵌套模型的表單。一個簡化版本的東西如下(使用Rails 3.0.13);在Rails更新驗證失敗後未被破壞的嵌套屬性
#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個孩子,然後將'thing'設置爲空,則表單無法按預期驗證(因爲'thing'不存在)並且編輯視圖被重新渲染。在結果看來,我刪除的孩子再次出現!其隱藏的_destroy字段設置爲「true」,如果我再次填寫「thing」並提交表單,則更新的父級只有1個子級。
我通過向嵌套的子div div <div class='fields'<%= " style='display: none;'" if f.object._destroy %>>
添加條件樣式標記來處理此問題,因此如果在嘗試更新記錄之前將其刪除,它將不再顯示。這實現了它的目標,但是,如果我這樣做並提交表單而不糾正空的'thing'字段,以便模型再次驗證失敗,並且在出現的下一個編輯表單中添加一個與之前刪除的子項相同的新子項並填寫'thing'字段,即使第一個相同的子項的_delete屬性設置爲「true」,模型現在也會失敗children_unique
驗證。
很明顯,我已經把自己綁在這裏,我已經嘗試了大量的替代方法和修改,這是我迄今爲止最好的。這是非常非常接近的,但我仍然有這種奇怪的邊緣情況下,實際上可能永遠不會發生,但這表明我不太瞭解我的控制器和模型的交互方式。
有人可以設置我嗎?
這是一個好主意 - 我真的希望不要下井AJAX途徑在這個應用程式所有,但它會解決這個問題。 – brad
您可以在更新操作開始時在控制器中使用AJAX。 – user2340939