使用我們的 REST API,Go 開發人員可以輕鬆創建 DOCX 文檔。要製作 DOCX 文檔格式的文件,您需要使用我們的 Go Cloud SDK 執行幾個步驟:
由於一個空的 DOCX 文檔應該正式包含一個段落,因此當您以編程方式創建 DOCX 文件時,您將獲得這樣一個基本結構。
請注意,可以立即將內容添加到新創建的 DOCX 文檔中。因此,您將獲得的不僅僅是一個空的 DOCX 文件,而是一個包含所需內容的文檔。有關如何修改 DOCX 文檔的更多信息,請參閱 'Edit DOCX Document' 頁面。
如前所述,我們的 Go Cloud SDK 允許您以編程方式創建 DOCX 文檔。您可以嘗試我們強大的功能並評估如何使用以下 Go 示例創建 DOCX 文件:
import (
"os"
"github.com/aspose-words-cloud/aspose-words-cloud-go/dev/api/models"
)
config, _ := models.NewConfiguration("config.json")
wordsApi, ctx, _ := api.CreateWordsApi(config)
fileName:= "Output.docx"
createDocumentRequestOptions := map[string]interface{}{"fileName": fileName,}
createDocumentRequest := &models.CreateDocumentRequest{
Optionals: createDocumentRequestOptions,
}
_, _, _ = wordsApi.CreateDocument(ctx, createDocumentRequest)
downloadDocumentRequestOptions := map[string]interface{}{}
downloadDocumentRequest := &models.DownloadFileRequest{
Path: ToStringPointer(fileName),
Optionals: downloadDocumentRequestOptions,
}
_, _ = wordsApi.DownloadFile(ctx, downloadDocumentRequest)
運行 go get -v github.com/aspose-words-cloud/aspose-words-cloud-go/2007/api 安裝 Aspose.Words Cloud SDK for Go 。您可以從 "How to use SDK" 部分獲得有關其他安裝方法的大量有用信息。
從 GitHub 克隆 Aspose.Words Cloud SDK for Go 源代碼並在您的項目中使用它。請按照這些 Instructions 快速獲取必要的安全憑證並訪問我們的 REST API。
請參閱 Repository Documentation 以查看詳細信息。