有没有办法将页码作为 Rails 中的字母

发布于 2024-12-21 20:28:04 字数 243 浏览 1 评论 0原文

在我的 Rails 应用程序中,我想对名称使用分页。我正在从 postgresql 表中获取名称。

def index
  @users = User.order("name").paginate(:page=>params[:page],:per_page=>50)
end

有没有一种按字母顺序分页的方法,其页码为 a、b、c.........z

感谢您的帮助, 拉姆亚。

In my rails application I wanted to use pagination for names. I'm fetching the names from a postgresql table.

def index
  @users = User.order("name").paginate(:page=>params[:page],:per_page=>50)
end

Is there a way of alphabetic pagination that has page numbers as a,b,c..........z

Thanks for your help,
Ramya.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮世清欢 2024-12-28 20:28:05

我也在我的一个项目中这样做。我没有为此使用宝石。使用范围真的很容易...例如:

<% ('A'..'Z').each do |char| %>
     <% if char==params[:char] %>
          <%= link_to :action => 'your_action', :char => char, :class => 'selected_char' %>
     <% else %>
          <%= link_to :action => 'your_action', :char => char %>
     <% end %>
<% end %>

然后在控制器操作中,您可以通过给定的 params[:char] 来选择对象。例如:

@instance_var = ModelName.where("field LIKE ?", "#{params[:char]}%")

这对我来说是这样。您可以轻松地构建一个部分并将其用于许多不同的模型。

Im doing this too in one of my projects. I didnt use a gem for this. Its really easy using Ranges... For example:

<% ('A'..'Z').each do |char| %>
     <% if char==params[:char] %>
          <%= link_to :action => 'your_action', :char => char, :class => 'selected_char' %>
     <% else %>
          <%= link_to :action => 'your_action', :char => char %>
     <% end %>
<% end %>

Then in the controller Action you select the Objects by the params[:char] given. For example:

@instance_var = ModelName.where("field LIKE ?", "#{params[:char]}%")

this did it for me. You can easy build a partial out of this and use it for many different Models.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文