LoginSignup
0
0

More than 5 years have passed since last update.

Ruby on Rails 基礎編 変数

Posted at

progate資料より

アクションの中で、@変数名として変数を定義すると、
その変数を対応するビューの中で用いることができる@をつけ忘れるとビューで用いる事はできない。
必要な変数を全てコントローラで定義すると、ビューは見た目を作る事に専念させる事ができる。

home_controller.rb
def top
@message = "ようこそGatebookへ"
titile = "Ruby on Rails"
end
end

top.html.erb

こんにちは


<%= @message %>
<%= title %> 機能しない
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