我有 2 个模型,产品和类别。产品有category_id
属性。所以,Product属于Category,Category里面有很多Products。
<!-- language: rb -->
class Product < ActiveRecord::Base
belongs_to :category
validates :category, presence: true
end
class Category < ActiveRecord::Base
has_many :products
end
如何为两个模型定义工厂(FactoryGirl rails)?特别有趣的是如何为产品模型执行此操作。