「AgileWebDevwith Rails」の本の例を見ていきますが、hamlのような便利な追加のテクニックと組み合わせて使用します。トリッキーな問題が1つあります。これは、このerbの部分を書き留める方法です。
<% if line_item == @current_item %>
<tr id="current_item">
<% else %>
<tr>
<% end %>
<td><%= line_item.quantity %>×</td>
<td><%= line_item.product.title %></td>
<td class="item_price"><%= number_to_currency(line_item.total_price) %></td>
</tr>
hamlで?
このようにsthを試しました:
-if line_item==@current_item
%tr#current_item
-else
%tr
%td!=line_item.quantity.to_s+"×"
%td=line_item.product.title
%td.item_price=number_to_currency(line_item.total_price)
しかし、TDなしで空のTRを出力します...