gpt4 book ai didi

json - 使用数组解码 JSON

转载 作者:IT王子 更新时间:2023-10-29 02:01:05 24 4
gpt4 key购买 nike

我正在尝试解码由 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)
}

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

我需要获取 36587e5d091a0d49f739c25c0b000c05 值,它是 rowsid 所以我尝试这样做

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\""} 没有字段或方法 ID)

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

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

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

最佳答案

你必须调用:

fmt.Println(s.Rows[0].ID)

关于json - 使用数组解码 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53912778/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com