1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00
This commit is contained in:
qinyuguang 2022-04-11 23:45:11 +08:00
parent ee29b28575
commit 9ff5f39701

View File

@ -26,7 +26,9 @@ func (j *Json) UnmarshalJSON(b []byte) error {
// UnmarshalValue is an interface implement which sets any type of value for Json.
func (j *Json) UnmarshalValue(value interface{}) error {
if r := New(value); r != nil {
if r := NewWithOptions(value, Options{
StrNumber: true,
}); r != nil {
// Value copy.
*j = *r
}