2011-02-05 60 views
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 %> 

回答

0
<% for photo in @static.attachments %> 
    <a id="single_image" href="<%= image_path("dinamic/"+photo.id.to_s+"/"+"originals_"+photo.image_file_name) %>" > <%= image_tag('dinamic/'+photo.id.to_s+'/'+'thumbs_'+photo.image_file_name) %> </a> 
<% end %> 

IMAGE_PATH解決了這個問題。

0

您是否嘗試了不同的瀏覽器?

嘗試捕獲HTTP通信應用服務器如何設置Content-Disposition標頭屬性。

如果你無法控制你的服務器,你可以做minicontroller這會使一個標籤與圖像:)