如何在ruby rails中逐列过滤

时间:2016-09-27 20:28:28

标签: ruby-on-rails ruby filterrific

我在我的表中显示用户列表(没有分页)。用户包含ID,姓名,年龄,状态,位置。我想允许按年龄或状态过滤列表。我如何在红宝石轨道中这样做?我尝试使用filterrific,但在过去两天here

后卡住了
Id name age status location
1  xz    22  single  ca
2  yy    23  married ma

查看

<table>
    <tr>
      <th>id</th>
      <th>name</th>
      <th>age</th>
      <th>status</th>
      <th>location</th>
    </tr>
    <% items.each do |item| %>
      <tr>
        <td><%= item.id %></td>
        <td><%= item.name %></td>
        <td><%= item.age %></td>
        <td><%= item.status %></td>
        <td><%= item.lcation %></td>
      </tr>
    <% end %>
  </table>

控制器

 def index
    @items  = User.all
  end

1 个答案:

答案 0 :(得分:0)

我认为,this施法可以帮助你完美而没有任何宝石。