用数组解组JSON

时间:2018-12-24 11:21:59

标签: json go unmarshalling

我正在尝试解组由长沙发数据库生成并在Go中返回cURL请求的以下JSON对象,此处未提及cURL请求代码,因为它不在此问题的范围内,我已将其分配给了在代码部分称为mail的变量。

JSON数据结构:

{
"total_rows": 4,
"offset": 0,
"rows": [{
              "id": "36587e5d091a0d49f739c25c0b000c05",
              "key": "36587e5d091a0d49f739c25c0b000c05",
              "value": {
                          "rev": "1-92471472a3de492b8657d3103f5f6e0d"
                       }
        }]
}

这是我的代码,用于解组上述JSON对象,

package main

import (
    "fmt"
    "encoding/json"
)

type Couchdb struct {
    TotalRows int `json:"total_rows"`
    Offset    int `json:"offset"`
    Rows      []struct {
        ID    string `json:"id"`
        Key   string `json:"key"`
        Value struct {
             Rev string `json:"rev"`
        } `json:"value"`
    } `json:"rows"`
}

func main() {
     mail := []byte(`{"total_rows":4,"offset":0,"rows":[{"id":"36587e5d091a0d49f739c25c0b000c05","key":"36587e5d091a0d49f739c25c0b000c05","value":{"rev":"1-92471472a3de492b8657d3103f5f6e0d"}}]}`)

     var s Couchdb
     err := json.Unmarshal(mail, &s)
     if err != nil {
         panic(err)
     }


     //fmt.Printf("%v", s.TotalRows)
     fmt.Printf("%v", s.Rows)
}

以上代码正常工作,您可以在with this link的Go Play Ground中访问工作代码。

我需要获取36587e5d091a0d49f739c25c0b000c05的{​​{1}}的{​​{1}}值,所以我正在尝试这样做

id

,它返回此错误 rows

但它适用于fmt.Printf("%v", s.Rows.ID)并且返回

prog.go:33:25: s.Rows.ID undefined (type []struct { ID string "json:\"id\""; Key string "json:\"key\""; Value struct { Rev string "json:\"rev\"" } "json:\"value\"" } has no field or method ID)

我的最终目标是获取fmt.Printf("%v", s.Rows)并将其分配给GO变量,但一直坚持使用GO来获取该值。

2 个答案:

答案 0 :(得分:1)

您必须致电:

SELECT 
    ....
FROM 
    LAMACOM.GACCENTRY
INNER JOIN 
    LAMACOM.GACCENTRYD ON LAMACOM.GACCENTRYD.TYP_0 = LAMACOM.GACCENTRY.TYP_0
INNER JOIN 
    LAMACOM.PAYMENTH ON LAMACOM.PAYMENTH.BPRVCR_0 = LAMACOM.GACCENTRY.NUM_0

答案 1 :(得分:1)

您将Rows定义为结构片,这意味着您应使用for迭代Rows以执行值。

for _, item := range s.Rows {
        fmt.Println(item.ID)
}