Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个模板
test.html.haml test.html.erb
两者具有相同的内容
<%= 1+1 %>
haml 的输出(错误)
%= 1+1 %>
erb 的输出(正确
2
如何获取 haml 文件以允许 ruby 输出
如果我理解正确,您有一个包含以下内容的 haml 文件:
那是ERB语法,你需要使用HAML语法。
= 1 + 1
如果您想要 HAML 文件而不是 eRB 文件,则需要使用 HAML 语法而不是 eRB 语法:
看这里How to Convert
How to Convert
再培训局
<strong><%= item.title %></strong>
哈姆
%strong= item.title