方案如下:您正在构建store app
,其中包含category
和product
模型。您的navbar
将动态包含categories
表。 DRY 这样做的方法是every action
上必须products controller
:
@categories = Category.all
最有效的方法是什么?
答案 0 :(得分:1)
在控制器中有一个before_filter。
before_filter :get_categories
protected
def get_categories
@categories = Category.all
end