在 erb 中添加评论的最佳方式

发布于 2024-08-31 13:56:00 字数 46 浏览 11 评论 0原文

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

How do we add comments in erb files, if we do not want them to be generated into the html content?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(8

入画浅相思 2024-09-07 13:56:00

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

<%# This is a great comment! %>

Use the <%# %> sequence, e.g.

<%# This is a great comment! %>
高速公鹿 2024-09-07 13:56:00

供记录

<%# This is a great comment! %>

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

For Record

<%# This is a great comment! %>

<%#= This is a great comment! %>
庆幸我还是我 2024-09-07 13:56:00

对于块评论:

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

For block comments:

<% if false %>
    code to be commented out...
<% end %> 
陪你到最终 2024-09-07 13:56:00

我有一个 Windows 设置,并且这个 <%-# %>序列是唯一适合我的:

示例:

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

I have a Windows setup, and this <%-# %> sequence is the only one that works for me:

Example:

<%-# This is a sample comment! %>
你的背包 2024-09-07 13:56:00

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

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

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

In my text editor, i run command + / (sublime-text shortcut). It will be like this.

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

It doesn't look simply, but it works.

狼亦尘 2024-09-07 13:56:00

由于 .erb 根据定义是“嵌入式 ruby​​”,因此您可以在 <%= 和另一个:%> 之间嵌入任何 ruby​​ 代码,通常全部写在一个中线。此外,Ruby 单行注释始终以 # 开头,因此 <%=# Comment %> 样式与纯 ruby​​ 和 erb 样式完美匹配一行评论。

Since .erb is "embedded ruby" by definition, you can embed any ruby code between: <%= and the other: %>, typically all written in one line. In addition, ruby one-line comments start always with #, so the <%=# Comment %> style matches perfectly with both pure-ruby and erb styles for one-line comments.

暗喜 2024-09-07 13:56:00

我不在控制器文件中工作,我必须将其放在斜杠

/注释之间.... /

I doesn't work in the Controllers files, I had to put it between slashes

/ comment here.... /

闻呓 2024-09-07 13:56:00

在 Ruby on Rails 应用程序中常用的嵌入式 Ruby (ERB) 中,您可以使用 <%# ... %> 添加注释

In Embedded Ruby (ERB), which is commonly used in Ruby on Rails applications, you can add comments using the <%# ... %>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文