2012-05-02 166 views
0

可能重複:
Is it possible to display an RTF file inside a web page using PHP?Rails 3中打開Word文檔內嵌

我想顯示.DOC頁面內嵌的文件。
我嘗試在我的控制器操作使用由send_file方法:

mime_types = { 
     :doc => 'application/msword', 
     :docx => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 
     :pdf => 'application/pdf', 
     :rtf => 'application/rtf', 
     :jpg => 'image/jpeg', 
     :tiff => 'image/tiff' 
    } 

    send_file 'c:/sites/efiling2/test.rtf', 
     :filename => '2', 
     :type => mime_types[:doc], 
     :disposition => 'inline' 

PDF文件它的工作原理,但對DOC文件瀏覽器問我在Word中打開文件,或將其保存在DICS。

是否可以在頁面上內聯打開文檔文件?

+0

http://stackoverflow.com/questions/678192/is-it-possible-to-display-an-rtf-file-inside-a-web-page-using-php – RadBrad

回答

0

問題是您的瀏覽器無法查看單詞doc文件這就是爲什麼它提供您保存它。我建議你看看一些HTML文檔查看器。看看http://www.documentcloud.org/opensource

+0

感謝建議尤里 –