解决方法
注释掉一行ob ruby代码使用
<%# code %> or for multiple lines <% =begin your code =end %>
编辑:
这是一个在视图中注释掉一个循环的示例.
= begin和= end必须直接在行的开头.
没有空格或制表符.
<h1>Listing posts</h1> <table> <tr> <th>Title</th> <th>Text</th> <th></th> <th></th> <th></th> </tr> <% =begin %> <%@posts.each do |post| %> <tr> <td><%= post.title %></td> <td><%= post.text %></td> <td><%= link_to 'Show',post %></td> <td><%= link_to 'Edit',edit_post_path(post) %></td> <td><%= link_to 'Destroy',post,:confirm => 'Are you sure?',:method => :delete %></td> </tr> <% end %> <% =end %> </table>