Rails使用链接过滤索引结果(没有下拉列表)

时间:2013-11-04 01:51:35

标签: ruby-on-rails ruby-on-rails-3

如果用户选择预定义的过滤器链接,我的索引将如何根据该请求显示结果?

<h1>Products</h1>
<% @products.each do |product| %>
<%= link_to product.name, product_path(product) %>
<% end %>

<h2>Find Product by Category</h2>
Electronics
Apparel
Books

例如,如何制作“电子产品”链接以过滤产品索引,仅包含具有“电子”类别的产品? “类别”字段/列已在我的数据库/模型中定义。

目前这是我的控制器的样子:

def index
  @products = Product.all
end

感谢。

2 个答案:

答案 0 :(得分:13)

将链接设为指向产品的链接,但将类别添加为网址参数。

然后在您的控制器中,如果参数存在,则根据它过滤结果。如:

查看:

<h2> Find Product by Category </h2>
  <%= link_to "Electronics", products_path(:category=>"electronics")

控制器

def index
  if params[:category]
    @products = Product.where(:category => params[:category])
  else
    @products = Product.all
  end
end

基于egyamado的评论:

如果你想添加flash消息,它将是这样的:

def index
  if params[:category]
    @products = Product.where(:category => params[:category])
    flash[:notice] = "There are <b>#{@products.count}</b> in this category".html_safe
  else
    @products = Product.all
  end
end

如果您只想在没有产品的情况下显示消息,则只需将if @products.empty?添加到flash名称的末尾

如果您想在没有产品的情况下显示错误消息,并且有产品通知

,您可以完全有条件
def index
  if params[:category]
    @products = Product.where(:category => params[:category])
    if @products.empty?
      flash[:error] = "There are <b>#{@products.count}</b> in this category".html_safe
    else
      flash[:notice] = "There are <b>${@products.count}</b> in this category".html_safe
    end
  else
    @products = Product.all
  end
end

答案 1 :(得分:0)

非常感谢你的帖子。它也非常适合我的需求

我在链接中使用它 <td><%= link_to 'Show', candidates_path(:atc_name=>(atc.name)) %></td>