我在一种形式中有几个模型关联。我想验证每个嵌套属性的存在。
我有 Product 模型,例如我有这个:
产品.rb
has_many :ships, :dependent => :destroy
has_many :sizes, :dependent => :destroy
accepts_nested_attributes_for :ships
attr_accessible :ships_attributes
attr_accessible :size_tokens
attr_reader :size_tokens
因此,当我发送产品表单的操作时,我想验证 :ships 和 :size_tokens 的存在。如何验证这些属性的存在?
非常感谢。