我们如何在erb文件中添加注释,如果我们不希望它们生成到html内容?
当前回答
对于块注释:
<% if false %>
code to be commented out...
<% end %>
其他回答
在我的文本编辑器中,我运行命令+ / (sublime-text快捷方式)。就像这样。
<%
=begin%>
Here is the comment
<%
=end%>
它看起来并不简单,但确实有效。
备案
<%# This is a great comment! %>
<%#= This is a great comment! %>
我有一个Windows设置,这个<%-# %>序列是唯一适合我的:
例子:
<%-# This is a sample comment! %>
对于块注释:
<% if false %>
code to be commented out...
<% end %>
我没有在控制器文件中工作,我必须把它放在斜杠之间
/在这里评论..../