最終更新:2019-06-18 (火) 16:50:46 (1773d)  

Rails/コントローラ
Top / Rails / コントローラ

継承

  • コントローラ < Rails/ApplicationController?

メモ

  • Railsのコントローラ名(ここでは「Controller」という文字は除きます)は、基本的に名前の最後の部分に「複数形」を使います

Welcome

  • Rails/app/controllers/welcome_controller.rb?
    class WelcomeController < ApplicationController
      def index
      end
    end

ビュー

  • Rails/app/views/welcome.html.erb?

メンバ

メモ

  • Railsではコントローラのインスタンス変数はすべてビューに渡されるようになっている

Rails/ルーティング

  • Rails/default_url_options?

関連