Go map[int]struct JSON Marshal

尝试在 go 中将 map[int] 解析为用户定义的结构:


这是数据模式。


type Recommendation struct {

    Book  int     `json:"book"`

    Score float64 `json:"score"`

}

这是 json 编组:


ureco := make(map[int]data.Recommendation)

ureco, _ = reco.UserRunner()


json, _ := json.Marshal(ureco)

fmt.Println(json)

其中 reco.UserRunner() 返回适当的结构类型。


这将打印一个空的 json 对象:


[]

更新:


错误信息:


json: unsupported type: map[int]data.Recommendation

那么我如何 json 结构映射?还是有替代方法?


陪伴而非守候
浏览 216回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go