2
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[Ruby on rails] 新着順に指定件数のみ表示 ランキング

Posted at

やりたいこと

新着の4件のみを表示させたい

スクリーンショット 2021-07-17 21.15.31.png

コード

  def top
    @items = Item.order('id DESC').limit(4)
    # ASCだと古い順でDESCで新着順です。
  end

limit()に表示したい件数を記述すれば完成です。

以下のサイトを参考にすれば、いいねランキングとかもできそうです

2
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?