我正在尝试解组以下由 couchDB 生成并在 Go 中返回 cURL 请求的 JSON 对象,这里没有提到 cURL 请求代码,因为它超出了这个问题的范围,我已将它分配给调用的mail变量代码部分。JSON数据结构:{"total_rows": 4,"offset": 0,"rows": [{ "id": "36587e5d091a0d49f739c25c0b000c05", "key": "36587e5d091a0d49f739c25c0b000c05", "value": { "rev": "1-92471472a3de492b8657d3103f5f6e0d" } }]}这是我对上述 JSON 对象进行解组的代码,package mainimport ( "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 获取该值。
- 2 回答
- 0 关注
- 116 浏览
添加回答
举报
0/150
提交
取消