Skip to content
New issue

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

使ったRailsの知識(原稿) #24

Open
saikishunsuke opened this issue Nov 16, 2017 · 0 comments
Open

使ったRailsの知識(原稿) #24

saikishunsuke opened this issue Nov 16, 2017 · 0 comments

Comments

@saikishunsuke
Copy link
Member

よくいじるファイル

  • 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.rbを見て、どのcontrollerを見るべきか知る。(get 'hoge/fuga', to:'xxx#yyy' と書かれていたとする)
  • routes.rbととxxx_controllerを見て、どの処理が行われるかを知る。(今回はyyyという処理が行われる)
  • yyy.html.erbを見て、どんなページが表示されるのかを知る。

新しくページを作るときも、routes→controller→view(html)の順で書くとわかりやすい

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant