LoginSignup
0
0

More than 3 years have passed since last update.

ブロック変数

Posted at
<% @comments.each do |comment| %>
 <p>
  <%= comment.text%>
  <%= Link_to"#{comment.user.name}",root_rath,class: :comment %>
 </p>
<% end %>

ブロックとは、do〜endまでです。
ブロック変数とは、|comment|のことをいいます。メソッドからパラメータが渡されます。

do〜end内のcommentは、|comment|のことを指しており、
commentの情報内からuser.nameを取得するという意味もあります。

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