現代 JavaScript 庫允許 Node.js via .NET 開發人員 DOC 文件。我們的 DOC 轉換引擎會分析原始的 DOC 佈局和样式,然後將組合內容導出為所需的格式。
DOC 轉換可能很棘手,除非您有專業的工具來完成這項工作。使用 JavaScript 以最大的靈活性和速度 DOC 運行在線演示並在網絡瀏覽器中 DOC DOC 轉換 API 支持一堆有用的選項。
Aspose.Words for Node.js via .NET增強 DOC 格式功能。 DOC 文件與處理所有低級細節的庫相結合的簡單方法。
合併 DOC 文件並將結果保存為單個文件。如果您在 JavaScript 開發代碼,這將比聽起來簡單。請參閱 JavaScript 示例,該示例遍歷 DOC 文檔並將它們組合起來:
npm install @aspose/words
複製
const aw = require('@aspose/words');
var fileNames = [ "Input1.doc", "Input2.doc" ]
var output = new aw.Document()
// 附加之前從目標文件中刪除所有內容。
output.removeAllChildren()
fileNames.forEach(fileName => {
var input = new aw.Document(fileName);
// 將來源文件附加到目標文件的末端。
output.appendDocument(input, aw.ImportFormatMode.KeepSourceFormatting);
});
output.save("Output.doc");
We host our Node.js via .Net packages in NPM repositories. Please follow the step-by-step instructions on how to install "Aspose.Words for Node.js via .NET" to your developer environment.
This package is compatible with Node.js 14.17.0 or higher.