Please find the code here http://play.golang.org/p/zdQ14ItNBZ
I save JSON data as RawMessage, but cannot decode it. I need the containing structure to be Marshalled and Unmarshalled, but I would expect you to be able to get the JSON field.
code:
package main import ( "encoding/json" "fmt" ) type Data struct { Name string Id int Json json.RawMessage } type Data2 struct { Name string Id int } func main() { tmp := Data2{"World", 2} b, err := json.Marshal(tmp) if err != nil { fmt.Println("Error %s", err.Error()) } fmt.Println("b %s", string(b)) test := Data{"Hello", 1, b} b2, err := json.Marshal(test) if err != nil { fmt.Println("Error %s", err.Error()) } fmt.Println("b2 %s", string(b2)) var d Data err = json.Unmarshal(b2, &d) if err != nil { fmt.Println("Error %s", err.Error()) } fmt.Println("d.Json %s", string(d.Json)) var tmp2 Data2 err = json.Unmarshal(d.Json, &tmp2) if err != nil { fmt.Println("Error %s", err.Error()) } fmt.Println("Data2 %+v", tmp2) }
of
b %s {"Name":"World","Id":2} b2 %s {"Name":"Hello","Id":1,"Json":"eyJOYW1lIjoiV29ybGQiLCJJZCI6Mn0="} d.Json %s "eyJOYW1lIjoiV29ybGQiLCJJZCI6Mn0=" Error %s json: cannot unmarshal string into Go value of type main.Data2 Data2 %+v { 0}
source share