鑑於這樣的:Rails,如何限制嵌套的資源數量?
class Item < ActiveRecord::Base
accepts_nested_attributes_for :item_options, :limit => 10, :reject_if => lambda { |a| a[:title].blank? }, :allow_destroy => true
類ItemOption <的ActiveRecord :: Base的 belongs_to的:項目
我怎樣才能使這樣的ItemOption不能,如果已經有10個或更多的項目選項添加一個物品?
acceptable_nested_attributes_for似乎只在創建項目時才起作用,並且稍後嘗試添加ItemOptions時不起作用。
謝謝