{"api": {"status":200, "message":"GET seasons/", "results":6, "filters":[], "seasons":["2015","2016","2017","2018","2019","2020"] } }
上記のようなjsonを返してくれのでそれをunmarshallしたいのですが、下記のようなstructに入れようとするとエラーがおきます。
type Seasons struct { API struct { Seasons []int `json:"seasons"` } `json:"api"` }
エラーメッセージ
&json.UnmarshalTypeError{Value:"object", Type:(*reflect.rtype)(0x12813e0), Offset:1, Struct:"", Field:""} json: cannot unmarshal object into Go value of type []*nba.Seasons
構造体の作り方に問題があるのでしょうか。お力貸していただけると幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/25 01:14