mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
fix: gjson encode to string expect inconformity(issue 2520) (#2928)
This commit is contained in:
parent
000c7a92ed
commit
eb11061bd2
@ -14,6 +14,7 @@ import (
|
||||
"github.com/gogf/gf/v2/container/gvar"
|
||||
"github.com/gogf/gf/v2/encoding/gjson"
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
"github.com/gogf/gf/v2/test/gtest"
|
||||
"github.com/gogf/gf/v2/util/gconv"
|
||||
)
|
||||
@ -587,3 +588,15 @@ func Test_Issue1747(t *testing.T) {
|
||||
t.Assert(j.Get("2"), `336371793314971759`)
|
||||
})
|
||||
}
|
||||
|
||||
// https://github.com/gogf/gf/issues/2520
|
||||
func Test_Issue2520(t *testing.T) {
|
||||
gtest.C(t, func(t *gtest.T) {
|
||||
type test struct {
|
||||
Unique *gvar.Var `json:"unique"`
|
||||
}
|
||||
|
||||
t2 := test{Unique: gvar.New(gtime.Date())}
|
||||
t.Assert(gjson.MustEncodeString(t2), gjson.New(t2).MustToJsonString())
|
||||
})
|
||||
}
|
||||
|
@ -306,7 +306,9 @@ func doMapConvertForMapOrStructValue(in doMapConvertForMapOrStructValueInput) in
|
||||
dataMap[mapK] = mapV
|
||||
}
|
||||
}
|
||||
return dataMap
|
||||
if len(dataMap) > 0 {
|
||||
return dataMap
|
||||
}
|
||||
}
|
||||
// Using reflect for converting.
|
||||
var (
|
||||
|
Loading…
x
Reference in New Issue
Block a user