我有2個模型,Bidding和BiddingItem。當我在Rails中得到PG :: ForeignKeyViolation錯誤時,如何顯示Flash通知消息
class Bidding < ActiveRecord::Base
has_many :bidding_items, dependent: :restrict_with_error
accepts_nested_attributes_for :bidding_items, reject_if: :all_blank, allow_destroy: true
end
class BiddingItem < ActiveRecord::Base
belongs_to :bidding
end
通過向出價模型添加以下依賴項,我沒有遇到任何錯誤,但仍想向用戶顯示消息。
has_many :bidding_items, dependent: :restrict_with_error
我怎麼能顯示一個閃存通知信息給用戶,而不是收到此錯誤看法或根本沒有得到任何錯誤(使用我之前提到的依賴)的?