list解析,兼容空list
This commit is contained in:
parent
4d83580f69
commit
d424a2fd20
@ -75,6 +75,7 @@ func (jg *JSON2GO) Parse(inputJSON string) (string, error) {
|
|||||||
func (jg *JSON2GO) parseArray(key string, parseResult gjson.Result) {
|
func (jg *JSON2GO) parseArray(key string, parseResult gjson.Result) {
|
||||||
// 先遍历一遍确认所有数据类型都相同
|
// 先遍历一遍确认所有数据类型都相同
|
||||||
dataType := ""
|
dataType := ""
|
||||||
|
if len(parseResult.Array()) > 0 {
|
||||||
for _, item := range parseResult.Array() {
|
for _, item := range parseResult.Array() {
|
||||||
if len(dataType) == 0 {
|
if len(dataType) == 0 {
|
||||||
dataType = jg.getDataType(item)
|
dataType = jg.getDataType(item)
|
||||||
@ -95,12 +96,16 @@ func (jg *JSON2GO) parseArray(key string, parseResult gjson.Result) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
dataType = "interface{}"
|
||||||
|
}
|
||||||
// 对象,重新
|
// 对象,重新
|
||||||
if dataType == "object" {
|
if dataType == "object" {
|
||||||
instance := NewJSON2GO("")
|
instance := NewJSON2GO("")
|
||||||
r, _ := instance.Parse(parseResult.Array()[0].String())
|
r, _ := instance.Parse(parseResult.Array()[0].String())
|
||||||
dataType = strings.Replace(strings.Replace(r, "type", "", 1), "Automatic", "", 1)
|
dataType = strings.Replace(strings.Replace(r, "type", "", 1), "Automatic", "", 1)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 所有数据类型都一致
|
// 所有数据类型都一致
|
||||||
if len(key) == 0 {
|
if len(key) == 0 {
|
||||||
jg.append("[]" + dataType)
|
jg.append("[]" + dataType)
|
||||||
|
Loading…
Reference in New Issue
Block a user