We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ルーティングをするファイル。どのURLにアクセスしたらどの処理をするのか決める。
例) get 'hoge/fuga', to:'xxx#yyy' → /hoge/fugaにアクセスされたら、xxx_controllerd中で定義されたyyyという処理を行う
処理を書く。(ページの遷移とか、html読み込むとか) よく使うのは以下の例)。
例) def yyy end
(これを書くだけで、app/views/xxx/yyy.html.erbが読み込まれる)
ページのhtmlを書く。
(/hoge/fugaにアクセスしたらどんな処理が行われるか知りたい時)
新しくページを作るときも、routes→controller→view(html)の順で書くとわかりやすい
The text was updated successfully, but these errors were encountered:
No branches or pull requests
よくいじるファイル
config/routes.rb
ルーティングをするファイル。どのURLにアクセスしたらどの処理をするのか決める。
例) get 'hoge/fuga', to:'xxx#yyy'
→ /hoge/fugaにアクセスされたら、xxx_controllerd中で定義されたyyyという処理を行う
app/controllers/xxx_controller
処理を書く。(ページの遷移とか、html読み込むとか)
よく使うのは以下の例)。
例) def yyy
end
(これを書くだけで、app/views/xxx/yyy.html.erbが読み込まれる)
app/views/xxx/yyy_html.erb
ページのhtmlを書く。
流れ
(/hoge/fugaにアクセスしたらどんな処理が行われるか知りたい時)
新しくページを作るときも、routes→controller→view(html)の順で書くとわかりやすい
The text was updated successfully, but these errors were encountered: