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

Golang Facebook对结构的回应

Golang Facebook对结构的回应

Go
叮当猫咪 2021-04-05 13:18:12
我是GO的新手,我想将json从facebook api转换为struct。问题在于对象的键是动态的:{  "100555213756790": {    "id": "100555213756790",    "about": "Noodle Bar & Restaurant",    "metadata": {      "fields": [        {          "name": "id",          "description": "asdasdasdasd",          "type": "numeric string"        },        //...  ,  "101285033290986": {    "id": "101285033290986",    "about": "Smart City Expo World Congress",    "metadata": {      "fields": [        {          "name": "id",          "description": "fgddgdfgdg",          "type": "numeric string"        },到目前为止,我所实现的是通过id提取对象并将其转换为地图:for _, id := range ids {    fbPages, ok := results[string(id)].(map[string]interface{})    if ok {        for k, v := range fbPages {            fmt.Println(k)            fmt.Println(v)        }    }}//json to Page struct?    type Page struct {        ID                string   `json:"id"`        About             string   `json:"about"`    }    type Metadata struct {        Fields      []Field           `json:"fields"`        Type        string            `json:"type"`        Connections map[string]string `json:"connections"`    }    type Field struct {        Name        string  `json:"name"`        Description string  `json:"description"`        Type        *string `json:"type,omitempty"`    }我的问题是:如何将该映射转换为struct?还是有什么简单的方法可以做我想做的事情?
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 264 浏览
慕课专栏
更多

添加回答

举报

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