我有以下代码:
<tbody> <%= Item.each do |item|=%> <tr> <th><%= item.rev =%></th> <========= <th><%= item.name =%></th> </tr> <%= end =%> </tbody>
解决方法
等于你有的迹象是错误的.请尝试以下方式:
<tbody> <% Item.each do |item|%> <tr> <th><%= item.rev %></th> <th><%= item.name %></th> </tr> <% end %> </tbody>
<%=应仅用于需要评估的表达式. 要帮助了解嵌入式ruby,请参阅此链接
http://www.ruby-doc.org/docs/ProgrammingRuby/html/web.html