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:
parent
f580b7a488
commit
82a3391937
@ -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
|
||||
|
@ -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)
|
||||
})
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user