我有一个带有名为 :published 的布尔值的 post 对象。控制器中 index 的定义如下所示:
def index
@posts = Post.all
respond_to do |format|
format.html # index.html.erb
format.json { render json: @posts }
end
end
这链接到该页面:
<%= link_to 'All posts', posts_path %>
假设我想要只显示 post.published 的帖子的选项?是真的。
- 我是否应该在控制器中使用单独的方法来处理仅显示 :published 帖子的情况?
- 我可以更改索引方法来处理传递给它的参数吗?
- link_to 会是什么样子?