LoginSignup
0
0

More than 3 years have passed since last update.

[rails]Controllerにアクションを追加する方法

Last updated at Posted at 2020-07-30

Controllerにアクションを追加するには

controllerを作成したあとは、アクションを記述する必要があります。
アクションとはコントローラに定義されている処理内容です。ユーザーが実際に呼び出して使います。

アクションはcontrollerファイルに対して、こんな感じで記述します。

topページを表示したい場合
def~の後は表示したいviewページの名前になります。

class HomesController < ApplicationController
  def top

  end
end

defはdefine(定義する)を意味します。

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