使用 Ruby on Rails 创建前 5 名排行榜

发布于 12-07 13:05 字数 468 浏览 1 评论 0原文

我网站上的用户每当其关注者之一点击他们发布的链接时都会获得积分。现在我可以使用以下方法显示每个人的列表,

@users = User.all

<table>
<tr>
 <th>User</th>
<th>Points</th>
</tr>
<% @users.sort_by{|u| u.clicks.size }.reverse.each do |u| %>
  <tr>
    <td><%= u.name %></td>
    <td><%= u.clicks.size %></td>
  </tr>
<% end %>
</table>

如何让该块遍历所有用户,然后只显示前 5 位?使用break if 方法不起作用。

Users on my site gain points everytime one of their followers clicks on a link they posted. Right now I am able to show a list of everyone by using,

@users = User.all

<table>
<tr>
 <th>User</th>
<th>Points</th>
</tr>
<% @users.sort_by{|u| u.clicks.size }.reverse.each do |u| %>
  <tr>
    <td><%= u.name %></td>
    <td><%= u.clicks.size %></td>
  </tr>
<% end %>
</table>

How can I have the block go through all the users then only display the top 5? Using the break if method is not working.

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

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

发布评论

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

评论(1

且行且努力2024-12-14 13:05:07

怎么样:

@users.sort_by{|u| u.clicks.size }.reverse[0...5].each do |u|

或者通过否定 sort_by 来完全消除相反的情况:

@users.sort_by{|u| -u.clicks.size }[0...5].each do |u|

或者您可以让数据库为您进行排序:

@users = Users.joins(:clicks).order("clicks.size DESC").limit(5)

How about:

@users.sort_by{|u| u.clicks.size }.reverse[0...5].each do |u|

Or do away with the reverse altogether by negating the sort_by:

@users.sort_by{|u| -u.clicks.size }[0...5].each do |u|

Or you can have the database do the sorting for you:

@users = Users.joins(:clicks).order("clicks.size DESC").limit(5)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文