0
2

More than 3 years have passed since last update.

Ruby on rails helperの役割

Posted at

helperの役割

viewで使うメソッドを定義することです。
helperにメソッドを定義することで、viewがDRYになります。

helperをviewに呼び出す方法

viewでhelperにあるメソッドを指定します。

例として、application.html.erbにhelperで定義したメソッドを呼び出してみます。

application_helper.rb
def full_title
 "full_title"
end
application.html.erb
<title><%= full_title %></title> 

viewで"full_title"が表示されます。

0
2
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
2