在 RoR 中,%h2 的 % 部分是什么意思?它在html.haml 文件中。另一个文件在所有内容前面都有 = 符号——这是什么意思?
问问题
275 次
1 回答
2
那是一个 html.haml 文件。HAML 是一种 ERB 替代方案。这%
意味着它是一个 HTML 标记(<h2>
在这种情况下),=
意味着 Ruby 代码。
这是ERB翻译:
<h1>Conversations</h1>
<h2>Inbox</h2>
<ul><%= render mailbox.inbox %></ul>
<h2>Sentbox</h2>
<ul><%= render mailbox.sentbox %></ul>
<h2>Trash</h2>
<ul><%= render mailbox.trash %></ul>
<%= link_to 'Start Conversation', :new_conversation %>
于 2012-12-20T17:42:28.163 回答