gpt4 book ai didi

go - 与reflect.StructTag.Get不兼容

转载 作者:行者123 更新时间:2023-12-01 19:18:19 24 4
gpt4 key购买 nike

我在 Google CLoud 工作,一切都很好..但是当我在我的 PC 中克隆我的所有项目时,我在每个 JSON 结构中都有这些消息。

结构字段标记 bson:"edad" json:"edad, omitempty" 与reflect.StructTag.Get 不兼容:结构标记值structtag 中存在可疑空间

这是我的结构

type Usuario struct {
ID bson.RawValue `bson:"_id" json:"id, omitempty"`
Nombre string `bson:"nombre" json:"nombre, omitempty"`
Apellidos string `bson:"apellidos" json:"apellidos, omitempty"`
Edad int `bson:"edad" json:"edad, omitempty"`
Email string `bson:"email" json:"email"`
Password string `bson:"password" json:"password, omitempty"`
}

怎么了 ?

谢谢

最佳答案

结构字段标记 bson:"edad"json:"edad, omitempty"与reflect.StructTag.Get 不兼容:结构标记值中的可疑空间structtag

这是警告不是错误。您应该仍然能够运行您的项目。

这个错误是由空间引起的
bson:"password" json:"password, omitempty"
"bson:"password" json:"password,omitempty" (应该是这样的)

逗号后没有空格。那么它将完美地工作。

关于go - 与reflect.StructTag.Get不兼容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59959839/

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