刚刚生成的设计视图并在生成的erb.html
:
<%- if controller_name != 'sessions' %>
<%= link_to "Sign in", new_session_path(resource_name) %><br />
<% end -%>
什么是<%- %> .. <% -%>
,我知道这是猴子的问题,但我不知道要搜索哪个关键字..所以我求助于无敌的 Stackoverflow..
刚刚生成的设计视图并在生成的erb.html
:
<%- if controller_name != 'sessions' %>
<%= link_to "Sign in", new_session_path(resource_name) %><br />
<% end -%>
什么是<%- %> .. <% -%>
,我知道这是猴子的问题,但我不知道要搜索哪个关键字..所以我求助于无敌的 Stackoverflow..
吃掉空白,因此呈现的 HTML 看起来更好。
您可以将 Ruby 代码放在 <% %> 中
<% 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