Golang中具有嵌套结构的json对象

时间:2018-07-09 12:16:58

标签: json go

我有以下要用Go表示为type JsonObject struct的json对象 并将其传回其原始json,以便我可以将json作为api端点返回。有任何建议/示例吗?

[{
    "time": 173000,
    "id": "VLSuEE5m1kmIhgE7ZhHDFe",
    "height": "",
    "DATASTRUCTURE": {

    },
    "language": "en",
    "size": 0,
    "url": "http://www.gstatic.com/play.m3u8",
    "type": "vid",
    "definitionid": "h264",
    "reference": "PAN-EN",
    "content": "This is some content",
    "revisiondate": "2017-11-29T00:00:00",
    "data": {

    },
    "id": "BBBB3424-153E-49DE-4786-013B6611BBBB",
    "thumbs": {
        "32": "https://www.gstatic.com/images?q=tbn:ANd9GcRj",
        "64": "https://www.gstatic.com/images?q=tbn:DPd3GcRj"
    },
    "title": "Cafeteria",
    "hash": "BBBB5d39bea20edf76c94133be61BBBB"
}]

1 个答案:

答案 0 :(得分:1)

您可以使用https://mholt.github.io/json-to-go/为给定的json模式生成结构。 例如,问题中给出的json可以表示为:

type AutoGenerated []struct {
Time          int    `json:"time"`
ID            string `json:"id"`
Height        string `json:"height"`
DATASTRUCTURE struct {
} `json:"DATASTRUCTURE"`
Language     string `json:"language"`
Size         int    `json:"size"`
URL          string `json:"url"`
Type         string `json:"type"`
Definitionid string `json:"definitionid"`
Reference    string `json:"reference"`
Content      string `json:"content"`
Revisiondate string `json:"revisiondate"`
Data         struct {
} `json:"data"`
Thumbs struct {
    Num32 string `json:"32"`
    Num64 string `json:"64"`
} `json:"thumbs"`
Title string `json:"title"`
Hash  string `json:"hash"`}

希望这会有所帮助!