gpt4 book ai didi

rest - golang 中特定于平台的反序列化?

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

我正在访问 REST API 并取回一些数据。昨天我遇到了一个有趣的行为。我还没有理解它背后的确切原因。这就是我想在这里寻找的。对于看起来像 -

{
"id": 2091967,
"first_name": "",
"last_name": "",
"email": "",
"telephone": "",
"timezone": "",
"weekly_capacity": "",
"has_access_to_all_future_projects": false,
"is_contractor": false,
"is_admin": false,
"is_project_manager": false,
"can_see_rates": false,
"can_create_projects": false,
"can_create_invoices": false,
"is_active": false,
"created_at": "2018-04-16T00:48:30Z",
"updated_at": "2018-11-07T22:47:43Z",
"default_hourly_rate": null,
"cost_rate": null,
"roles": [
"blah"
],
"avatar_url": ""
}

我使用了如下所示的函数来获取电子邮件 -

func GetUserEmail(userID int) string {
resp := getFromSomething("https://something/users/" + strconv.Itoa(userID))
var result map[string]string

json.NewDecoder(resp.Body).Decode(&result)
log.Printf("userEmail: %s", result["email"])
return result["email"]
}

代码在我的 mac 上完美运行,我正在构建它 - env GOOS=linux go build -ldflags="-s -w"-o bin/something cmd/main.go但是,它无法反序列化,并且在使用相同的构建命令时没有在 EC2 实例上打印任何内容。

但随后,我将 var result map[string]string 更改为 var result map[string]interface{},它在我的 EC2 实例和 mac 上都有效.

在返回之前,我还必须在最后对 interface{} 对象进行类型转换。

func GetUserEmail(userID int) string {
resp := getFromSomething("https://something/users/" + strconv.Itoa(userID))
var result map[string]interface{}

json.NewDecoder(resp.Body).Decode(&result)
log.Printf("userEmail: %s", result["email"])
return result["email"].(string)
}

有没有人见过这样的事情?或者,有人知道为什么会这样吗?

我知道负载总是可以通过 var result map[string]interface{} 更好地表示,但我的问题是 - 为什么 var result 的早期表示map[string]string 在 Mac 上工作而不在 EC2 上工作?

Mac 上的 Go 版本 - go version go1.11.2 darwin/amd64 EC2 上的是 go version go1.10.3 linux/amd64

最佳答案

始终检查并处理错误。

Decode 返回的错误解释了这个问题。该应用程序正在尝试将数字、 bool 值和数组解码为字符串值。

var v map[string]string
err := json.NewDecoder(data).Decode(&v) // data is the JSON document from the question
fmt.Println(err) // prints json: cannot unmarshal number into Go value of type string

Run it on the Playground .

此问题不是特定于平台的。为什么您会看到不同的结果,我有几个猜测:

  • 在不同平台上进行测试时使用了不同的 JSON 文档。
  • 问题指出命令 env GOOS=linux go build -ldflags="-s -w"-o bin/something cmd/main.go 用于构建 Mac 版本,但是此命令不会构建可在 Mac 上执行的二进制文件。也许您没有运行您认为正在运行的代码。

要么解码为您发现的 map[string]interface{},要么解码为具有您想要的一个字段的结构:

var v struct{ Email string }
if err := json.NewDecoder(data).Decode(&v); err != nil {
// handle error
}
fmt.Println(v.Email) // prints the decoded email value.

Run it on the Playground .

关于rest - golang 中特定于平台的反序列化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53753230/

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