我有一个表示来自比特币网络的交易数据的字符串。我希望我能解码字符串(名为my_data),这样我只能检索" hash"的值。领域。我尝试了一个小例子(在实际情况下,我会有一个数组,每个位置包含一个传输数据,就像你在代码中看到的那样):
package main
import (
"encoding/json"
"fmt"
)
func main() {
var my_data = []byte(`{
"ver":1,
"inputs":[
{
"sequence":4294967295,
"prev_out":{
"spent":true,
"tx_index":156978299,
"type":0,
"addr":"34cXotJvHAz1RVFtmK2vU29E9d5hF2manG",
"value":848231245,
"n":1,
"script":"a914200f3e946fcf58d3f0787034a610860f0b96332d87"
},
"script":"004730440220149e4cd90c7b2648e89d357162f383098504eea21d390f02e5a289e114ed36520220556da97f0e6789d34f4fb1faf7a1c1055368c01ede85b8101be5007f7b9f3c190147304402200d72e1b91684cdb0e63ea2a24d6ae0b9e38dacdf068e2e08e46ce7f951cdc9dd0220242be0131722287bc15e3d802ba3dea9df0c18f3ec0ac6913b4146f7deb717c90147522102dfd3c8864cddd4d88a8f602d016a656132f89f66450966f9a4a45dea11ec6eb92102c5f064226fcd75fdcae289118b0c4d20e1bafbf4068e7102baec66fade94e3b952ae"
}
],
"block_height":417695,
"relayed_by":"138.201.2.34",
"out":[
{
"spent":false,
"tx_index":156978302,
"type":0,
"addr":"1PWDLsx73qfyCUga29ffAjc2UVdWEeeHDL",
"value":3123438,
"n":0,
"script":"76a914f6d92221d499bf8c01a0dc6f0c04b82d6b62301f88ac"
},
{
"spent":true,
"tx_index":156978302,
"type":0,
"addr":"34cXotJvHAz1RVFtmK2vU29E9d5hF2manG",
"value":845057807,
"n":1,
"script":"a914200f3e946fcf58d3f0787034a610860f0b96332d87"
}
],
"lock_time":0,
"size":334,
"double_spend":false,
"time":1466725723,
"tx_index":156978302,
"vin_sz":1,
"hash":"fae2577ff2a1cfa977c7a883ea4e594c91bd67c767ef1b7870475022c08a453b",
"vout_sz":2
}`)
type Tx struct {
hash string
}
var txs []Tx
err := json.Unmarshal(my_data, &txs)
if err != nil {
fmt.Println("error:", err)
}
for i:=0; i<len(txs); i++{
fmt.Printf("%s\n\n", txs[i].hash)
}
}
但我一直收到以下错误:
error: json: cannot unmarshal object into Go value of type []main.Tx
我可以尝试一种更简单的方式,不需要&#34;编码/ json&#34;图书馆?
提前致谢!
编辑:
我的代码改编自我从here中提取的一个例子。
我认为问题在于我尝试解码的字符串,因为它构建的模式允许嵌套列表和带或不带引号的字段值。虽然我不确定。
答案 0 :(得分:2)
Kaedys在两个方面都是正确的。
您的JSON是一个对象,而不是一个数组。
您没有导出encoding/json
库所需的结构中的“哈希”字段。
如果在输入JSON周围放置方括号(使其成为数组)并将“hash”字段名称大写为code will work。
答案 1 :(得分:1)
您的JSON不是一个列表,它是编组切片所必需的。
但是,如果您的输入数据实际上是一个列表,那么您可能会遇到目标结构(更具体地说,hash
字段)未导出的问题。使用匿名结构(本质上是导出的)而不是类型定义也可能更容易。而不是:
type Tx struct {
hash string
}
var txs []Tx
err := json.Unmarshal(my_data, &txs)
使用:
var txs []struct {
Hash string `json:"hash"` // tag not strictly necessary, but useful for clarity
}
err := json.Unmarshal(my_data, &txs)