の違いは何ですか
<% some code %>
と
<%= some code %>
RoRで?
このように考えてください:
<% execute this code and display nothing %>
と
<%= execute this code and display the result in the view %>
したがって、たとえば、これを行うことができます。
<% @values = ['eenie', 'menie', 'miney', 'mo' ] %>
<% @values.each do |value| %>
The current value is <%= value %>!
<% end %>
<%= some code %>
ステートメントを評価し、ビューに表示します。
<% some code %>
ステートメントのみを評価します。