1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

fix precision lost of int64 for package gcfg (#2044)

fix: gcfg lose precision

Co-authored-by: qinyuguang <qinyuguang@meican.com>
This commit is contained in:
Gin 2022-08-03 21:50:17 +08:00 committed by GitHub
parent f580b7a488
commit 82a3391937
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View File

@ -210,7 +210,8 @@ func LoadContentType(dataType string, data interface{}, safe ...bool) (*Json, er
content = content[3:]
}
options := Options{
Type: dataType,
Type: dataType,
StrNumber: true,
}
if len(safe) > 0 && safe[0] {
options.Safe = true

View File

@ -110,3 +110,13 @@ func Test_NewWithOptions(t *testing.T) {
t.Assert(array, []uint64{9223372036854775807, 9223372036854775806})
})
}
func Test_LoadContentType(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
data := []byte("value = 79937385836643329")
j, err := gjson.LoadContentType("toml", data)
t.AssertNil(err)
value := j.Get("value").Int64()
t.Assert(value, 79937385836643329)
})
}