2
我的應用程序顯示縮略圖,但如果我點擊縮略圖,它的下載,沒有出現。它的工作如何? link_to image_tag('lorem'),image_tag('lorem_big')?Rails link_to打開大圖
<% for photo in @article.attachments %>
<%= link_to image_tag('dinamic/'+photo.id.to_s+'/'+'thumbs_'+photo.image_file_name), "#{request.env["HTTP_HOST"]}/public/images/dinamic/"+photo.id.to_s+"/"+"originals_"+photo.image_file_name, :class => 'single_image'%>
<% end %>