在我的控制人员中,我有:
@documents = Document.find(:all, :order => "section asc, sub_section asc, position asc, name asc")
@files = Dir.glob("public/downloads/*").sort
我认为:
<% @documents.each do |d| -%>
<tr class="<%= cycle("","alt") %>">
<td><%= d.name %></td>
<td><%= d.file_name %></td>
<td><%= d.description %></td>
<td>
<%= link_to "Edit", edit_document_path(d) %><br>
<%= link_to "Del", document_path(d), :confirm => "Are you sure boogerhead?", :class => "destroy", :method => :delete %>
</td>
</tr>
<% end -%>
如果档案中不包含姓名,则取决于该名称的另一页(档案名称)的链接将不予使用。 如果不匹配,则我用彩色密码档案——姓名表示存在问题。 如何检查档案是否包含在@files中?
增 编