0

很抱歉这个愚蠢的问题,但我无法在没有帮助的情况下解决我的问题..在这个链接上使用 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 %>
4

2 回答 2

0

您是否在模型的声明中定义了:medium样式has_attached_file

尝试在没有大小的情况下使用它:

<% @poster.photos.each do |t| %>
<%= image_tag t.url %>
<% end %>
于 2013-09-20T18:34:30.513 回答
0
<% @poster.photos.each do |t| %>
<%= image_tag t.url(:medium) %>
<% end %>

这是一个问题。我应该写

<%= image_tag t.photo.url(:medium) %>
于 2013-09-25T10:14:45.667 回答