This question already has an answer here:
Trying to find a simple solution to marshaling/unmashaling into the following struct
type Resource struct {
Data []ResourceData `json:"data"`
}
type ResourceData struct {
Id string `json:"id"`
Type string `json:"type"`
Attributes map[string]interface{} `json:"attributes"`
Relationships map[string]Resource `json:"relationships"`
}
r := Resource{}
json.Unmarshal(body, &r)
this is great if:
body = `{"data":[{"id":"1","type":"blah"}]}`
However I also need it to respond to:
body = `{"data":{"id":"1","type":"blah"}}` //notice no slice
I could make a separate type
type ResourceSingle struct {
Data ResourceData `json:"data"`
}
However, that would mean needing to duplicate all the functions I have attached to resource, which is possible. However, i would need to find out which type to unmarshal into before executing it, plus when it comes to the relationships part, each of those could contain data:[]{} or data{}, so that idea isn't going to work.
Alternatively I could use
map[string]*json.RawMessage
//or
type Resource struct {
Data *json.RawMessage `json:"data"`
}
but still, when in json form how do I know if it is a slice or a node to supply the correct struct to unmarshal into?
My last resort is to umarshal into map[string]interface and use lots of reflect testing .. but this is very long winded.
Ideas?
Kind regards, jJ
There's a number of ways to structure it, but the simplest technique comes down to implementing a json.Unmarshaler
, and inspecting the type of the data. You can minimally parse the json bytes, often just the first character, or you can try to unmarshal into each type and return the one that succeeds.
We'll use the latter technique here, and insert the ResourceData into a slice regardless of the incoming data's format, so we can always operate on it in the same manner:
type Resource struct {
Data []ResourceData
}
func (r *Resource) UnmarshalJSON(b []byte) error {
// this gives us a temporary location to unmarshal into
m := struct {
DataSlice struct {
Data []ResourceData `json:"data"`
}
DataStruct struct {
Data ResourceData `json:"data"`
}
}{}
// try to unmarshal the data with a slice
err := json.Unmarshal(b, &m.DataSlice)
if err == nil {
log.Println("got slice")
r.Data = m.DataSlice.Data
return nil
} else if err, ok := err.(*json.UnmarshalTypeError); !ok {
// something besides a type error occurred
return err
}
// try to unmarshal the data with a struct
err = json.Unmarshal(b, &m.DataStruct)
if err != nil {
return err
}
log.Println("got struct")
r.Data = append(r.Data, m.DataStruct.Data)
return nil
}
来源:https://stackoverflow.com/questions/33569210/go-json-unmarshal-options