在 JavaScript 中将 HTML转换为Word

用于将HTML转换为Word的高速Node.js库

使用Node.js以编程方式将 HTML 转换为 Word。 探索Node.js的强大功能,实现高效且可扩展的 HTML 到 Word 转换。

查看代码片段

在 JavaScript 中将 HTML 转换为 Word

对于寻求将 HTML 转换为 Word 的无缝解决方案的 JavaScript 开发人员, Aspose.Words for Node.js via .NET 提供了直观且直接的文件转换 API。我们的解决方案允许 JavaScript 开发人员轻松地将文件从一种格式转换为另一种格式,使其成为自动化文件转换任务不可或缺的工具。

无论您使用 HTML、Word 还是其他文件格式, Aspose.Words for Node.js via .NET 都能涵盖所有这些格式并确保最高质量的结果。立即测试 JavaScript 代码如何与您的 HTML 文件配合使用。

在 JavaScript 中将 HTML 保存为 Word

以下示例演示了如何仅使用几行 JavaScript 代码将 HTML 转换为 Word。首先在 JavaScript 项目中包含Aspose.Words命名空间。接下来,指定输入文件的路径并创建一个Document对象来加载 HTML 内容。然后,您需要指定 Word 输出文件的路径,并使用 save() 方法将结果保存为 Word。转换API将根据指定的文件扩展名确定输出文件格式。

JavaScript代码示例将HTML转换为DOCX格式
上传您要转换的文件
运行代码
从列表中选择目标格式
npm install @aspose/words
复制
const aw = require('@aspose/words');

var doc = new aw.Document("Input.html")
doc.save("Output.docx")
const aw = require('@aspose/words'); var doc = new aw.Document("Input.html") doc.save("Output.docx") const aw = require('@aspose/words'); var doc = new aw.Document("Input.html") for (var page = 0; page < doc.pageCount; page++) { var extractedPage = doc.extractPages(page, 1); extractedPage.save(`Output_${page + 1}.docx`); } const aw = require('@aspose/words'); var doc = new aw.Document() var builder = new aw.DocumentBuilder(doc) builder.insertImage("Input.html") doc.save("Output.docx") const aw = require('@aspose/words'); var doc = new aw.Document() var builder = new aw.DocumentBuilder(doc) shape = builder.insertImage("Input.html") shape.getShapeRenderer().save("Output.docx", new aw.Saving.ImageSaveOptions(aw.SaveFormat.docx))
运行代码
在社交媒体上分享代码:

如何在 JavaScript 中将 HTML 转换为 Word

  1. Aspose.Words for Node.js via .NET安装 Aspose.Words。
  2. 将库引用(导入库)添加到您的JavaScript项目。.
  3. 在JavaScript打开源HTML文件。.
  4. 调用save()方法,传递带有Word扩展名的输出文件名。.
  5. HTML转换的结果Word 。.

JavaScript库将HTML转换为Word

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.

System Requirements

This package is compatible with Node.js 14.17.0 or higher.

5%

订阅 Aspose 产品更新

获取直接发送到您的邮箱的每月通讯和优惠。

© Aspose Pty Ltd 2001-2024. 版权所有。