Rails 5 每个循环 activestorage files 显示文件属性

Rails 5 each loop activestorage files displays files attributes

我使用 ActiveStorage

将 Rails 更新到 5.2 版本

一切正常,但是当我循环遍历我的模型附加文件以便将它们显示为 bootstrap 卡片时,我在页面上看到了我的文件属性。 我不想让它显示任何东西。

我该如何预防?

  <strong style="margin: 10px">Files :</strong>
  <div class="card-columns">
  <%= @mymodel.files.each do |file| %>

  <% end %>
  </div>

what it makes on my page

从循环中删除 = header...

而不是

<%= @mymodel.files.each do |file| %>

使用

<% @mymodel.files.each do |file| %>

结帐what the difference is