使用我們的 REST API,JavaScript 開發人員可以輕鬆創建 DOC 文檔。要製作 DOC 文檔格式的文件,您需要使用我們的 Node Cloud SDK 執行幾個步驟:
由於一個空的 DOC 文檔應該正式包含一個段落,因此當您以編程方式創建 DOC 文件時,您將獲得這樣一個基本結構。
請注意,可以立即將內容添加到新創建的 DOC 文檔中。因此,您將獲得的不僅僅是一個空的 DOC 文件,而是一個包含所需內容的文檔。有關如何修改 DOC 文檔的更多信息,請參閱 'Edit DOC Document' 頁面。
如前所述,我們的 Node Cloud SDK 允許您以編程方式創建 DOC 文檔。您可以嘗試我們強大的功能並評估如何使用以下 JavaScript 示例創建 DOC 文件:
import * as fs from "fs";
const wordsApi = new WordsApi("####-####-####-####-####", "##################");
const fileName = "Output.doc";
const createDocumentRequest = new model.CreateDocumentRequest({
fileName: fileName
});
wordsApi.createDocument(createDocumentRequest)
.then((createDocumentRequestResult) => {
console.log("Result of CreateDocumentRequest: ", createDocumentRequestResult);
const downloadDocumentRequest = new model.DownloadFileRequest({
path: fileName
});
wordsApi.downloadFile(downloadDocumentRequest)
.then((downloadDocumentRequestResult) => {
console.log("Result of DownloadDocumentRequest: ", downloadDocumentRequestResult);
});
});
使用 NPM 包管理器安裝 'Aspose.Words Cloud SDK for Node.js' 從命令行運行 npm install asposewordscloud --save 以通過 NPM 包管理器安裝 SDK。作為替代方案,您可以從 GitHub 手動克隆 Aspose.Words Cloud SDK for Node.js 源代碼並在您的項目中使用它。請按照這些 Instructions 快速獲取必要的安全憑證並訪問我們的 REST API。
請參閱 Repository Documentation 以查看更多詳細信息。