1
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 3 years have passed since last update.

【アウトプット】find_by メソッド

Posted at

今回はfind_byについてアウトプットをしていく。

find_byはある特定のIDを取得すときに使われる。
3番目のIDのデータを取得するとか5番目とか

モデル名.find_by(カラム名: 値)と書くことでその値を持ったデータのデータベースから取得ができるようになる。

例)post = Post.find_by (id:3)
ちなみにpostはeachのときに使った変数

このようにして使われる。

変数paramsとよく使われる?らしいのでこれも併用して覚えるとGOOD

1
0
1

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
1
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?