diff --git a/wrapper/json.go b/wrapper/json.go index d44aa20..cf93259 100644 --- a/wrapper/json.go +++ b/wrapper/json.go @@ -75,6 +75,7 @@ func (oj *ownJson) Marshal(marshalType string) ([]byte, error) { // generateStructField 递归解析 func (oj *ownJson) generateStructField(rootPath string, currentName string, currentResult gjson.Result) { structPath := oj.getPath(rootPath, currentName) + fmt.Println(structPath) if currentResult.IsBool() { // bool类型 oj.structBuilder.AddField(structPath, "", true, "", false) @@ -123,8 +124,8 @@ func (oj *ownJson) generateStructField(rootPath string, currentName string, curr return } if arrList[0].IsArray() { - // 数组就不递归处理了, 支持到二维 - oj.structBuilder.AddField(structPath, "", [][]any{}, "", false) + // 数组递归处理 + oj.generateStructField(structPath+".[]", "", arrList[0]) return } // 对象结构,递归处理 @@ -141,5 +142,8 @@ func (oj *ownJson) getPath(root string, currentName string) string { if root == "" { return currentName } + if currentName == "" { + return root + } return root + "." + currentName } diff --git a/wrapper/json_test.go b/wrapper/json_test.go index 9625a8a..c20de06 100644 --- a/wrapper/json_test.go +++ b/wrapper/json_test.go @@ -13,7 +13,7 @@ import ( ) func TestNewJson(t *testing.T) { - sourceData := `{"name": "test", "age":18,"company":{"address": "Beijing", "name":"lala"},"index":[1,2,3,4], "deep":[{"name":"a"}]}` + sourceData := `{"name": "test", "age":18,"company":{"address": "Beijing", "name":"lala"},"index":[1,2,3,4], "deep":[[{"name":"a","age":20},{"name":"c"}], [{"name":"b"},{"name":"d"}]]}` instance, iErr := NewJson(sourceData, &Option{XmlName: "ResponseData"}) fmt.Println(iErr) res, err := instance.Marshal("xml")