我需要在 HTML 中显示嵌套的集合结构。我正在使用以下部分进行操作:
<ul<%= ' id="tree"' if depth == 0 %>>
<% items.each do |item| %>
<li id="node_<%= item.id %>"><a><%= item.name %></a>
<% if item.has_children? %>
<%= render :partial => 'tree_level', :locals => {:items => item.children, :depth => depth + 1} %>
<% end %>
</li>
<% end %>
</ul>
这是拥有代码的最佳位置吗?我“觉得”to_html
对象上应该有一个方法可以为我转储整个树结构,尽管这可行。