تصدير كائن LISTOBJECT إلى ملف بتنسيق MD باستخدام Cells Cloud SDK لـ Ruby
API
POST
https://api.aspose.cloud/v3.0/cells/export
يعد تصدير كائن LISTOBJECT إلى ملف MD من ملف Excel مهمة معقدة. يتم تنفيذ عمليات تصدير تنسيق LISTOBJECT إلى MD بواسطة Ruby SDK الخاص بنا مع الحفاظ على المحتوى الهيكلي والمنطقي الرئيسي لجدول بيانات LISTOBJECT المصدر. تعد مكتبة Ruby الخاصة بنا حلاً احترافيًا لتصدير كائنات LISTOBJECT إلى ملفات بتنسيق MD عبر الإنترنت. يوفر Cloud SDK لمطوري Ruby وظائف قوية ومخرجات MD مثالية.
مثال التعليمات البرمجية في روبي باستخدام REST API لتصدير LISTOBJECT إلى تنسيق MD من جدول البيانات
# For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby/
describe 'cells_save_as_post_document_save_as test' do
it "should work" do
@instance = AsposeCellsCloud::LiteCellsApi.new($client_id,$client_secret,"v3.0","https://api.aspose.cloud/")
files = {}
name = $DataSourceXlsx
files[name] = ::File.open(File.expand_path("data/"+name),"r")
name =$AssemblyTestXlsx
files[name] = ::File.open(File.expand_path("data/"+name),"r")
format = 'md'
objectType = 'listobject'
result = @instance.post_export(files ,objectType ,format)
end
end
كيفية استخدام Cells Cloud SDK لروبي لتصدير الكائنات من Excel LISTOBJECT إلى MD
- تسجيل حساب فيلوحة القيادة للحصول على تفاصيل الحصص والترخيص API مجانًا
- قم بتهيئة Cells API باستخدام معرف العميل وسر العميل وعنوان URL الأساسي وإصدار API.
- قم باستدعاء طريقة post_export للحصول على الدفق الناتج
متطلبات النظام
- روبي 2.5 أو أحدث