1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 03:05:05 +08:00
This commit is contained in:
John Guo 2022-02-17 11:46:35 +08:00
parent 948cb9ff7c
commit 2461ef9f29
5 changed files with 44 additions and 3 deletions

View File

@ -29,7 +29,6 @@ func LeEncode(values ...interface{}) []byte {
if values[i] == nil {
return buf.Bytes()
}
switch value := values[i].(type) {
case int:
buf.Write(LeEncodeInt(value))
@ -61,6 +60,7 @@ func LeEncode(values ...interface{}) []byte {
buf.Write(LeEncodeFloat32(value))
case float64:
buf.Write(LeEncodeFloat64(value))
default:
if err := binary.Write(buf, binary.LittleEndian, value); err != nil {
intlog.Errorf(context.TODO(), `%+v`, err)

View File

@ -15,6 +15,11 @@ import (
"github.com/gogf/gf/v2/errors/gerror"
)
// RawMessage is a raw encoded JSON value.
// It implements Marshaler and Unmarshaler and can
// be used to delay JSON decoding or precompute a JSON encoding.
type RawMessage = json.RawMessage
// Marshal adapts to json/encoding Marshal API.
//
// Marshal returns the JSON encoding of v, adapts to json/encoding Marshal API

View File

@ -10,6 +10,7 @@
package gconv
import (
"context"
"fmt"
"math"
"reflect"
@ -18,6 +19,7 @@ import (
"time"
"github.com/gogf/gf/v2/encoding/gbinary"
"github.com/gogf/gf/v2/internal/intlog"
"github.com/gogf/gf/v2/internal/json"
"github.com/gogf/gf/v2/internal/utils"
"github.com/gogf/gf/v2/os/gtime"
@ -272,6 +274,9 @@ func doConvert(in doConvertInput) interface{} {
case "[]map[string]interface{}":
return Maps(in.FromValue)
case "json.RawMessage":
return Bytes(in.FromValue)
default:
if in.ReferValue != nil {
var (
@ -316,6 +321,13 @@ func Bytes(any interface{}) []byte {
}
originValueAndKind := utils.OriginValueAndKind(any)
switch originValueAndKind.OriginKind {
case reflect.Map:
bytes, err := json.Marshal(any)
if err != nil {
intlog.Errorf(context.TODO(), `%+v`, err)
}
return bytes
case reflect.Array, reflect.Slice:
var (
ok = true

View File

@ -421,7 +421,7 @@ func bindVarToReflectValue(structFieldValue reflect.Value, value interface{}, ma
}
// Common interface check.
if err, ok := bindVarToReflectValueWithInterfaceCheck(structFieldValue, value); ok {
if err, ok = bindVarToReflectValueWithInterfaceCheck(structFieldValue, value); ok {
return err
}
@ -500,7 +500,7 @@ func bindVarToReflectValue(structFieldValue reflect.Value, value interface{}, ma
case reflect.Ptr:
item := reflect.New(structFieldValue.Type().Elem())
if err, ok := bindVarToReflectValueWithInterfaceCheck(item, value); ok {
if err, ok = bindVarToReflectValueWithInterfaceCheck(item, value); ok {
structFieldValue.Set(item)
return err
}

View File

@ -11,6 +11,7 @@ import (
"time"
"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/internal/json"
"github.com/gogf/gf/v2/os/gtime"
@ -1277,3 +1278,26 @@ func Test_Struct_Issue1563(t *testing.T) {
}
})
}
// https://github.com/gogf/gf/issues/1597
func Test_Struct_Issue1597(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
type S struct {
A int
B json.RawMessage
}
jsonByte := []byte(`{
"a":1,
"b":{
"c": 3
}
}`)
data, err := gjson.DecodeToJson(jsonByte)
t.AssertNil(err)
s := &S{}
err = data.Scan(s)
t.AssertNil(err)
t.Assert(s.B, `{"c":3}`)
})
}