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

2020/10/3 昼アウトプット

Posted at

#応用復習 ツイートを表示させる

  • 投稿モデル作成
  • rails g model tweet
  • マイグレーションを編集→rails db:migrate実行→rails s
  • コンソール起動→データ追加→シークエルで確認
  • ルーティング
  • resourcesメソッドとは7つのアクションへのルーティングを自動生成するメゾット
  • onlyオプションとは指定したアクションのみのルーティングを作成
  • ルート編集
  • tweetsコントローラー作成→rails controller tweets
  • indexアクションをコントローラーに定義
  • @tweets = Tweet.allですべてのレコードをインスタンス変数に代入、ビューへ
  • すぐ忘れるeachメソッドでビューを作成
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?