العمل مع الخادم الجانبي لـ GridJs

العمل مع الخادم الجانبي لـ GridJs

0. قم بتعيين مسار المجلد الصحيح في التكوين

Config.FileCacheDirectory لملف تخزين التخزين المؤقت للورقة العمل. Config.PictureCacheDirectory لملفات الصور التخزين المؤقت في الورقة العمل.

بالنسبة لتفاصيل التخزين ، يرجى التحقق من هذا الدليل

1. تنفيذ GridCacheForStream

بالنسبة لتخزين الملفات المحلي ، إليك مثال:

بالنسبة لتخزين الخادم الجانبي ، نحن نوفر أيضًا مثالًا. Please check: https://github.com/aspose-cells/Aspose.Cells-for-.NET/blob/master/Examples_GridJs/Models/AwsCache.cs

2. احصل على json من ملف جدول البيانات.

GridJsWorkbook wbj = new GridJsWorkbook();
using (FileStream fs = new FileStream(path, FileMode.Open))
{
    wbj.ImportExcelFile(fs,GridJsWorkbook.GetGridLoadFormat(Path.GetExtension(path)));
}
String ret =wbj.ExportToJson();

3. احصل على الصور/الأشكال من ملف جدول البيانات

//Gridjs will automatically zip all the images/shapes into a zip stream  and store it in cache using the cache implemention.
//GridJsWorkbook.CacheImp.SaveStream(zipoutStream, fileid);

//get the fileid in the cache,uid is the unique id for the spreadsheet  instance, sheetid is the sheet index,
String fileid=(uniqueid + "." + (sheetid + '_batch.zip'))

//get the zip file stream by the fileid
Stream s=GridJsWorkbook.CacheImp.LoadStream(fileid), mimeType, fileid.Replace('/', '.')

4. تحديث ملف جدول البيانات في الذاكرة المؤقتة

GridJsWorkbook gwb = new GridJsWorkbook();
//p is the update json,uid is the unique id for the spreadsheet
String ret = gwb.UpdateCell(p, uid);

5. حفظ ملف جدول البيانات في الذاكرة المؤقتة

GridJsWorkbook wb = new GridJsWorkbook();
//p is the update json,uid is the unique id for the spreadsheet
wb.MergeExcelFileFromJson(uid, p);
wb.SaveToCacheWithFileName(uid, filename,password);

للحصول على معلومات مفصلة ، يمكنك التحقق من المثال هنا: https://github.com/aspose-cells/Aspose.Cells-for-.NET/tree/master/Examples_GridJs