0
0

More than 3 years have passed since last update.

学習のアウトプット

Posted at

覚えたことやったことをノートに今まで書いてましたがこれだけでは記憶に残らないのでQiitaでも書いていきます。
本当に簡単のことしか書きません。自分用に書いていきます。

「railsでホームページを作成するには」

rails generate contoller home top

これを実行すると2つのファイルが作られる。ファイルみたいなやつ。
1つは top.html.erb
2つめ home_controller

1つめのtop.html.erb の説明
・これはviewに作られる
ここに文字,htmlを入れると反映される

追加するときはファイルをhomeに作る
○○ .html.erbみたいな感じ

2つ目のhome_controllerの説明
・これはcontrollerに作られる
controllerに def top と書かれている
これが無いとアクセスができない。

追加するときは def ○○○

ちなみにルーティングに get "home/top" => "home#top"と書かれていないとエラーが起きる
get URL => コントローラ名 # アクション名

以上

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