我尝试将代码从 haml 转换为 erb,但我被卡住了,不知道为什么。
这是我要转换的原始代码:https ://github.com/gmarik/simple-backend-example/blob/master/app/views/backend/resource/_index.html.haml
这就是我现在所拥有的。有人可以看看它并给我一些提示。谢谢。
我最怀疑这条线:
%tr[resource]{odd_or_even}
我认为它可能是这样的:
<tr> <% @resource{odd_or_even} %>
RubyMine 在这一行给了我一个错误:
<%= paginate collection %>
<% content_for(:header) do %>
<h1><%= resource_class.model_name.human(count: 2) %></h1>
<ul class="tabs">
<li class="active"><%= link_to "Index", "#" %></li>
<li><%= link_to "New", new_resource_path %> </li>
</ul>
<table class='zebra-striped'>
<thead>
<tr>
<% attributes.each do |attr| %>
<th> <%= resource_class.human_attribute_name(attr) %></th>
<th> </th>
</tr>
</thead>
<tbody>
<% collection.each do |resource| %>
<tr> <% @resource{odd_or_even} %>
<% attributes.each do |attr| %>
<td> <%= resource.public_send(attr).to_s.truncate(20) %> </td>
<td class='row-actions'>
<%= link_to 'show', resource_path(resource) %>
|
<%= link_to 'edit', edit_resource_path(resource) %>
|
<%= link_to 'destroy', resource_path(resource), method: :delete, confirm: "Are you sure?" %>
</td>
<% end %>
</tbody>
</table>
<%= paginate collection %>