使用我們的 REST API,Ruby 開發人員可以輕鬆創建 DOCX 文檔。要製作 DOCX 文檔格式的文件,您需要使用我們的 Ruby Cloud SDK 執行幾個步驟:
由於一個空的 DOCX 文檔應該正式包含一個段落,因此當您以編程方式創建 DOCX 文件時,您將獲得這樣一個基本結構。
請注意,可以立即將內容添加到新創建的 DOCX 文檔中。因此,您將獲得的不僅僅是一個空的 DOCX 文件,而是一個包含所需內容的文檔。有關如何修改 DOCX 文檔的更多信息,請參閱 'Edit DOCX Document' 頁面。
如前所述,我們的 Ruby Cloud SDK 允許您以編程方式創建 DOCX 文檔。您可以嘗試我們強大的功能並評估如何使用以下 Ruby 示例創建 DOCX 文件:
require 'aspose_words_cloud'
AsposeWordsCloud.configure do |config|
config.client_data['ClientId'] = '####-####-####-####-####'
config.client_data['ClientSecret'] = '##################'
end
@words_api = WordsAPI.new
file_name= 'Output.docx'
create_document_request = CreateDocumentRequest.new(file_name: file_name)
@words_api.create_document(create_document_request)
download_document_request = DownloadFileRequest.new(path: file_name)
@words_api.download_file(download_document_request)
使用 RubyGems 託管服務安裝 Aspose.Words Cloud SDK for Ruby 。運行 gem install aspose_words_cloud 來安裝包。作為替代方案,您可以從 GitHub 手動克隆 Aspose.Words Cloud SDK for Ruby 源代碼並在您的項目中使用它。請按照這些 Instructions 快速獲取必要的安全憑證並訪問我們的 REST API。