gpt4 book ai didi

go - 尝试将数据解码到 golang 中的界面

转载 作者:数据小太阳 更新时间:2023-10-29 03:45:31 24 4
gpt4 key购买 nike

尝试将数据解码到接口(interface)中。它工作正常。但是如果我访问 res.page 或 res.Page 不工作

我收到以下错误:

res.Page undefined (type interface {} is interface with no methods)

下面是我的代码:

package main

import (
"encoding/json"
"fmt"
)

func main() {
var res interface{}
str := `{"page": 1, "fruits": ["apple", "peach"]}`
json.Unmarshal([]byte(str), &res)
fmt.Println(res.Page)
}

提前致谢。

最佳答案

接口(interface){}指定零方法(和 ofc 零字段)。
您需要的是一个 map [字符串]接口(interface){}

试试这个 https://play.golang.org/p/WBwXKob4zdA

package main

import (
"encoding/json"
"fmt"
)

func main() {
var res map[string]interface{}
str := `{"page": 1, "fruits": ["apple", "peach"]}`
json.Unmarshal([]byte(str), &res)
fmt.Println(res["page"])
}

您可能需要检查:

关于go - 尝试将数据解码到 golang 中的界面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50247048/

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