0
0

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 1 year has passed since last update.

each文で出力するデータの数を指定する方法

Posted at

目的

検索をかけても自分の理想とする記事がなかなか見つけることができなかったためこちらに使用方法をまとめます。

数の指定

例えばpostsテーブルがあったとして5つ取得したいと考えたときコントローラ ビューファイルに以下のように記述します。

posts_controller.rb
@posts = Post.all
viewファイル
<% @posts.limit(5).each do |post| %>
# ~~~~~
<% end %>

上記のようにeachメソッドを使う前にlimitメソッドで数を指定する流れでできました。

まとめ

データを一部取得したいときに便利かと思いました。

参考記事

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?