Rails 4.2.5和ruby 2.3.3p222
我正在使用Paperclip上传文件,如果我上传pdf,那么显示效果不错,但我找不到在浏览器中正确显示word文件的方法。
型号:
has_attached_file :document
validates_attachment :document, :content_type => { :content_type => %w(application/pdf application/msword application/vnd.openxmlformats-officedocument.wordprocessingml.document) }
以我的形式:
<%= f.input :document, as: :file %>
在我的节目中:
<iframe src="<%= @article.document.url %>" style="height:800px;width:100%"></iframe>
同样,如果它的pdf显示完美,虽然如果它是一个word文件,它只是在我加载页面后立即下载文件。
我认为它是我在Show页面中使用的,但在google上搜索时无法找到任何解决方案。 有人试图这样做或有任何建议吗?
提前致谢。