我们如何在erb文件中添加注释,如果我们不希望它们生成到html内容?


当前回答

在我的文本编辑器中,我运行命令+ / (sublime-text快捷方式)。就像这样。

<%
=begin%>
    Here is the comment 
<%
=end%>

它看起来并不简单,但确实有效。

其他回答

对于块注释:

<% if false %>
    code to be commented out...
<% end %> 

我没有在控制器文件中工作,我必须把它放在斜杠之间

/在这里评论..../

备案

<%# This is a great comment! %>

<%#= This is a great comment! %>

使用<%# %>序列,例如。

<%# This is a great comment! %>

在我的文本编辑器中,我运行命令+ / (sublime-text快捷方式)。就像这样。

<%
=begin%>
    Here is the comment 
<%
=end%>

它看起来并不简单,但确实有效。