如何使用rails在浏览器中查看paperclip docx附件

时间:2016-09-23 07:33:32

标签: ruby-on-rails-4

我已将方法的配置属性设置为内联,因此我能够在浏览器中查看pdf文件,但我想要为docx文件完成。但不是在单独的选项卡中查看文件正在下载。

def download_emp
   send_file @employee_document.document.path,
             filename: @employee_document.document,
             type: @employee_document.document_content_type,
             disposition: 'inline'
 end

但我希望在浏览器中查看docx附件而不是下载。

1 个答案:

答案 0 :(得分:0)

使用上述方法的链接,尝试添加目标:“_ blank”。以下是一个例子,

link_to "View", 'url', target: "_blank"

但是下载doc文件是浏览器的默认功能,无法替换。但尝试上述代码是值得的。