尝试在 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 结构映射?还是有替代方法?
相关分类