我有一个简单的博客应用程序,其中包含帖子、评论等,并且想为帖子添加分类,即每个帖子只属于一个类别,并且在其中显示帖子。
现在在路线内
resources :category do
resources :posts
end
我想要像这样的路径
类别/工作
我生成 CategoryController,但如何填充它并与现有的帖子控制器链接?
class CategoryController < ApplicationController
def index
@category = Category.all
end
def show
@category = Category.find(params[:id])
end
end
此外,视图如何看起来像类别,以便在其中显示帖子?