在erb中添加注释的最佳方式

时间:2010-05-05 15:57:42

标签: ruby-on-rails ruby erb

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

7 个答案:

答案 0 :(得分:324)

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

<%# This is a great comment! %>

答案 1 :(得分:45)

记录

<%# This is a great comment! %>

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

答案 2 :(得分:27)

对于区块评论:

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

答案 3 :(得分:6)

我有一个Windows设置,这个&lt;% - #%&gt;序列是唯一适合我的序列:

示例:

<%-# This is a sample comment! %>

答案 4 :(得分:2)

由于.erb是定义&#34;嵌入式ruby&#34;,您可以将每个ruby代码嵌入:<%=和另一个:%>之间,通常全部写在一行中。此外,ruby单行注释始终以#开头,因此<%=# Comment %>样式与纯红宝石和erb样式完全匹配,用于单行注释。

答案 5 :(得分:1)

我无法在Controllers文件中工作,我必须将其放在斜线之间

/在这里评论。.../

答案 6 :(得分:0)

在我的文本编辑器中,我运行command + /(崇高文本快捷方式)。会是这样。

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

它看起来不简单,但是可以。