Ruby on Rails - 这个符号是什么意思:<% - ... - %>在erb?

时间:2012-05-03 12:53:29

标签: ruby-on-rails ruby

刚生成的设计视图,可在生成的erb.html中找到:

<%- if controller_name != 'sessions' %>
  <%= link_to "Sign in", new_session_path(resource_name) %><br />
<% end -%>

<%- %> .. <% -%>是什么,我知道这是一个猴子的问题,但我不知道要搜索哪个关键词。所以我来到了无敌Stackoverflow的帮助下..

2 个答案:

答案 0 :(得分:7)

吃掉空格,使渲染的HTML看起来更好。

答案 1 :(得分:0)

您可以将Ruby代码放在&lt; %%&gt;

<% Ruby code -- inline with output %>
<%= Ruby expression -- replace with result %>
<%# comment -- ignored -- useful in testing %>
% a line of Ruby code -- treated as <% line %> (optional -- see ERB.new)
%% replaced with % if first thing on a line and % processing is used
<%% or %%> -- replace with <% or %> respectively

参考:http://ruby-doc.org/stdlib-1.9.3/libdoc/erb/rdoc/ERB.html