嵌入式 ruby​​ 语法“<%= .. %>”在轨道上

发布于 2024-12-15 12:07:30 字数 111 浏览 0 评论 0原文

我对以下有关 ERB 模板的想法是否正确?任何建议将不胜感激。

嵌入的 ruby​​ 语法是否带有等号“<%= %>”打算渲染一些输出?而没有等号“<% %>”的没有。

Am I correct with the idea below regarding ERB template? any advice would be really appreciated.

Is the embedded ruby syntax with an equal sign "<%= %>" intended to render some output? while the one without the equal sign "<% %>" doesn't.

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

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

发布评论

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

评论(1

不美如何 2024-12-22 12:07:30

当您使用 <%= %> 时,您将表达式值渲染到输出中。而 <% %> 只是编写一些不会呈现到最终输出的 Ruby 代码。

When you use <%= %> you render the expression value to your output. While <% %> is simply to write some Ruby code that won't be rendered to final output.

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