Ruby on rails:过滤搜索框

时间:2014-10-20 14:40:00

标签: ruby-on-rails ruby search dictionary

我正在创建一个复制在线词典的rails应用程序。我已经实现了alphabetical_paginate gem,但是我想添加一个搜索栏,可以在您为要查找的单词键入时过滤单词。有没有可以做到这一点的宝石,或者是否有直接的搜索栏过滤方式?

我的控制器看起来像这样:

def index
  @words, @alphaParams = Word.all.alpha_paginate(params[:letter], {:default_field => "all"}){|word| word.word}
end

查看:

<%= alphabetical_paginate @alphaParams %>

<table>
  <thead>
    <tr>
      <th>Word</th>
      <th>Wordtype</th>
      <th>Description</th>
      <th colspan="3"></th>
    </tr>
  </thead>

<div id="pagination_table">
  <tbody>
    <% @words.each do |word| %>
      <tr>
        <td><%= word.word %></td>
        <td><%= word.wordtype %></td>
        <td><%= word.description %></td>
        <td><%= link_to 'Show', word %></td>
      </tr>
    <% end %>
  </tbody>
</div>
</table>

1 个答案:

答案 0 :(得分:0)

您正在寻找数据表。

以下是开始使用的链接:

  1. http://datatables.net/
  2. https://github.com/rweng/jquery-datatables-rails