1

刚刚生成的设计视图并在生成的erb.html

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

什么是<%- %> .. <% -%>,我知道这是猴子的问题,但我不知道要搜索哪个关键字..所以我求助于无敌的 Stackoverflow..

4

2 回答 2

7

吃掉空白,因此呈现的 HTML 看起来更好。

于 2012-05-03T12:55:07.727 回答
0

您可以将 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

于 2012-05-03T12:56:38.607 回答