From 45483ccdaa6c73dba160e97a90647b10bd03997f Mon Sep 17 00:00:00 2001 From: godotg Date: Fri, 19 Jul 2024 22:12:28 +0800 Subject: [PATCH] doc[storage]: update document --- storage/README.md | 4 +++- storage/README_CN.md | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/storage/README.md b/storage/README.md index 1fc847a3..e307d9fb 100644 --- a/storage/README.md +++ b/storage/README.md @@ -8,7 +8,9 @@ English | [简体中文](./README_CN.md) - Take advantage of the reflection nature of the Java dynamic language to parse Excel without any code -- null safe, empty strings resolve to strings of length 0, and empty collections resolve to sets of length 0 +- Arrays or collections support null safe, and empty arrays or collections resolve to arrays or collections of length 0 + +- Empty strings are parsed to string of length 0, and empty object are parsed to null - Support Excel to export json, csv files diff --git a/storage/README_CN.md b/storage/README_CN.md index 7f8d925c..4306489c 100644 --- a/storage/README_CN.md +++ b/storage/README_CN.md @@ -7,7 +7,9 @@ - 利用Java动态语言的反射特性,无需任何代码就能解析Excel -- null safe,空的字符串解析为长度为0的字符串,空的集合解析为长度为0的集合 +- 数组或集合支持 null safe,空的数组或者集合解析为长度为0的数组或集合 + +- 空的字符串解析为长度为0的字符串,空的对象解析为null - 支持Excel导出json,csv文件