0

场景如下:你正在构建一个store app你有category一个product模型的地方。您navbar将动态包含categories表格。一种干燥的方法是必须every action在你的products controller

@categories = Category.all

这样做最有效的方法是什么?

4

1 回答 1

1

在控制器中有一个 before_filter。

before_filter :get_categories

protected
def get_categories
  @categories = Category.all
end
于 2013-06-16T09:35:46.860 回答