我有一个父模型,它正在通过像'@client.update_attributes(params [:client]'这样的参数进行更新。在我的参数中是调用销毁'client_card'。我在client_card上有一个before_destroy方法可以防止它我的 before_destroy 方法正在运行,但是,更新时 before_destroy 上的错误不会传播到相关模型。关于如何在更新时将此模型错误传播到关联模型的任何建议?
class Client < ActiveRecord::Base
has_many :client_cards, :dependent => :destroy
validates_associated :client_cards
class ClientCard < ActiveRecord::Base
belongs_to :client, :foreign_key => 'client_id'
attr_accessible :id, :client_id, :card_hash, :last_four, :exp_date
before_destroy :check_relationships
def check_finished_appointments
appointments = Appointment.select { |a| a.client_card == self && !a.has_started }
if(appointments && appointments.length > 0 )
errors.add(:base, "This card is tied to an appointment that hasn't occurred yet.")
return false
else
return true
end
end
end