如果我的category
课程有很多products
,并且每个产品只有一个类别,那么我的模型看起来像这样:
class Product < ActiveRecord::Base
belongs_to :category
end
还有这个:
class Category < ActiveRecord::Base
has_many :products
end
然后,从belongs_to
产品方面,我可以使用以下方法在我的产品模型中创建一个 category_name create_category
:?我如何知道在产品方面我可以使用哪些自动生成的方法?