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 に答える