var mammoth = require("mammoth");
mammoth.convertToHtml({path: "document.docx"})
.then(function(result){
var html = result.value; // The generated HTML
var messages = result.messages; // Any messages, such as warnings during conversion
console.log(html);
})
.done();
1条答案
按热度按时间pkmbmrz71#
在上面的代码中,您只需替换“document”。docx”与您的路径。doc文件和猛犸js将为您生成HTML。然后,您可以根据需要在Web应用程序中使用此HTML。