嵌入式 ruby 语法“<%= .. %>”在轨道上
我对以下有关 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您使用
<%= %>
时,您将表达式值渲染到输出中。而<% %>
只是编写一些不会呈现到最终输出的 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.