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

モデル データ取得

Posted at

テーブルからデータを取得します

モデルから取得したデータはコントローラーに送られます。

その為にはActiveRecordクラスが必要です

メソッド 用途
all テーブルの全てのデータを取得する
find テーブルのレコードの内、ある1つのデータを取得する
new クラスのレコードを生成する
save クラスのレコードを保存する
post_controller.rb
def index

@post = Post.all #大文字Pからスタート 
@post_2 = Post.find(1) #1番のレコードを取得

以上でモデル内からデータを取得し、コントロール内で定義しているインスタンス変数に代入した

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?