很抱歉这个愚蠢的问题,但我无法在没有帮助的情况下解决我的问题..在这个链接上使用 Paperclip 在 ror 中多次上传 我有很好的一切。一切正常。但是我有一个问题如何为我的建筑模型编写 show.html.erb(实际上我有海报)。这是我在我的 app/views/poster/show.html.erb 中尝试过的:
<% @poster.photos.each do |t| %>
<%= image_tag t.url(:medium) %>
<% end %>
但它没有显示任何图片..谢谢
我也尝试过这个变种:
<% for pic in @poster.photos %>
<%= image_tag pic.url(:medium) %>
<% end %>