猿问

使用数组解组 JSON

我正在尝试解组以下由 couchDB 生成并在 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)

}

并且上面的代码工作正常,您可以通过Go Play Ground 中的此链接访问此处的工作代码。


我需要得到36587e5d091a0d49f739c25c0b000c05的价值,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)并返回


[{36587e5d091a0d49f739c25c0b000c05 36587e5d091a0d49f739c25c0b000c05 {1-92471472a3de492b8657d3103f5f6e0d}}]


我的最终目标是获取36587e5d091a0d49f739c25c0b000c05并将其分配给 GO 变量,但坚持使用 GO 获取该值。


富国沪深
浏览 117回答 2
2回答

万千封印

你必须打电话:fmt.Println(s.Rows[0].ID)

30秒到达战场

您定义 Rows为结构切片,这意味着您应该使用for迭代 Rows以执行值。for _, item := range s.Rows {        fmt.Println(item.ID)} 
随时随地看视频慕课网APP

相关分类

Go
我要回答