在我看来,我有行
<%= link_to "View", employee_document.file.url, :target => "_blank" %> -
<%= link_to "Download", employee_document.file.url %>
我希望视图打开一个包含文档的单独选项卡。下载链接正常工作,不幸的是视图链接下载文件。
答案 0 :(得分:1)
def get_image
send_file '/path/to.jpeg', :type => 'image/jpeg', :disposition => 'inline'
end
&#13;
您可以将处置设置为内联。
答案 1 :(得分:0)
这取决于附件的文件类型和该特定文件类型的浏览器设置。某些浏览器会导致文件被下载,而其他浏览器会打开文件(如果它知道如何以及设置允许的话)。