首页 > 解决方案 > json:无法将数字 5088060241 解组为 int 类型的结构

问题描述

我正在使用 OVH 提供程序处理 Terraform 项目,创建记录时,提供程序无法获取记录的 ID 并触发此错误: cannot unmarshal number 5088060240 into Go struct field OvhDomainZoneRecord.id of type int

我在 github 存储库上打开了一个问题,但仍在等待答案。我想自己纠正这个问题,但我不是 Go 开发人员,我找不到任何相关的错误。

OvhDomainZoneRecord 的结构:

type OvhDomainZoneRecord struct {
    Id        int    `json:"id,omitempty"`
    Zone      string `json:"zone,omitempty"`
    Target    string `json:"target"`
    Ttl       int    `json:"ttl,omitempty"`
    FieldType string `json:"fieldType"`
    SubDomain string `json:"subDomain,omitempty"`
}

相关文件: https ://github.com/terraform-providers/terraform-provider-ovh/blob/master/ovh/resource_ovh_domain_zone_record.go

标签: jsongointegerterraform

解决方案


大小为int32 位或 64 位,具体取决于您编译和运行的目标体系结构。您的输入5088060240大于 32 位整数(即2147483647)的最大值,因此如果您的输入int是 32 位,则会出现此错误。

最简单的解决方法是使用int64. 看这个例子:

var i int32
fmt.Println(json.Unmarshal([]byte("5088060240"), &i))

var j int64
fmt.Println(json.Unmarshal([]byte("5088060240"), &j))

输出(在Go Playground上试试):

json: cannot unmarshal number 5088060240 into Go value of type int32
<nil>

推荐阅读