j2gg0s

Results 23 comments of j2gg0s
trafficstars

> @j2gg0s Thanks for your reply. (And, happy new year! ) > > Is there a solution for handling such cases where only specific columns should be cast while others...

Additional information about the solution. Can we insert the `Struct` as the first element of the `Field` and no longer maintain the `Struct` field. [decode.go#L123](https://github.com/golang/go/blob/go1.22.4/src/encoding/json/decode.go#L123) ```go // An UnmarshalTypeError describes...

At the same time, we also lose the embedded struct information. ```go package main import ( "encoding/json" "fmt" ) type Y struct { ZField int } type X struct {...