为了账号安全,请及时绑定邮箱和手机立即绑定

如何在 Go 中解组 Json 数组

如何在 Go 中解组 Json 数组

Go
慕码人8056858 2022-07-11 14:46:47
我正在努力解析以下 json 数据:[{"id":90129966,"from":"user@admin.com","subject":"golang test","date":"2020-10-20 07:39:55"}]这是我的代码:package mainimport (    "encoding/json"    "fmt")type JsonTemplate struct {    Id      int    `json:"id"`    From    string `json:"from"`    Subject string `json:"subject"`    Date    string `json:"date"`}type Response struct {    JsonTemplate []JsonTemplate}func main() {    mockJson := `[{"id":90129966,"from":"user@admin.com","subject":"golang test","date":"2020-10-20 07:39:55"}]`    var response Response    err := json.Unmarshal([]byte(mockJson), &response)    if err != nil {        fmt.Println(err)    }    fmt.Println(response)}输出:json: cannot unmarshal array into Go value of type main.Response{[]}我不知道我在这里做错了什么。有人能指出我正确的方向吗?
查看完整描述

1 回答

?
慕妹3242003

TA贡献1824条经验 获得超6个赞

从 Flimzy 那里得到了答案:var response []JsonTemplate。再次感谢。



查看完整回答
反对 回复 2022-07-11
  • 1 回答
  • 0 关注
  • 72 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信