2016-12-13 181 views
0

我需要將doc/docx轉換爲html。我有存儲在Amazon S3中的文件。我需要查看&在瀏覽器中進行編輯。現在,我使用Apache POI將doc/docx轉換爲html。我正在HTML編輯器上顯示響應(Jquery插件)。它工作,但對齊/格式的變化。還有圖像沒有提取。任何修復圖像提取&格式問題的解決方案,請參閱或參考任何用於轉換的Jquery/JS插件。是否有可能使用jquery/javascript將doc/docx轉換爲html?

回答

2

做一個快速谷歌搜索,我發現這些庫:(我沒有用過,也沒有批准任何一種)

docx2html基本功能:

var docx2html=require('docx2html') 
docx2html(fileInput.files[0],{container:document.getElementById('a')}).then(function(html){ 
    html.toString() 
}) 

猛獁基本功能:

var mammoth = require("mammoth"); 


mammoth.convertToHtml({path: "path/to/document.docx"}) 
    .then(function(result){ 
     var html = result.value; // The generated HTML 
     var messages = result.messages; // Any messages, such as warnings during conversion 
    }) 
    .done(); 

我希望這是,至少,有用

相關問題