gpt4 book ai didi

ruby-on-rails - 如何在 ruby​​ rails 中按列过滤表格

转载 作者:太空宇宙 更新时间:2023-11-03 16:43:17 25 4
gpt4 key购买 nike

我在表中显示用户列表(无分页)。用户包含 ID、姓名、年龄、状态、位置。我想允许按年龄或状态过滤列表。我如何在 ruby​​ rails 中执行此操作?我尝试使用 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>

Controller

 def index
@items = User.all
end

最佳答案

我想,this cast 可以帮助您在没有任何 gem 的情况下变得完美。

关于ruby-on-rails - 如何在 ruby​​ rails 中按列过滤表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39733731/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com