为了账号安全,请及时绑定邮箱和手机立即绑定

为什么 mgo 不能正确解组我的结构?

为什么 mgo 不能正确解组我的结构?

Go
慕慕森 2021-10-18 10:26:42
早些时候我发布了这个问题,询问有关使用 mgo 在 Go 中编写自定义 BSON 编组/解组的问题。现在我来测试它,我想我遇到了一个更大的问题。我所有的结构都解组为 nil 值。这是我的货币结构与 bson.Getter 和 bson.Setter 的实现:type Currency struct {    value        decimal.Decimal //The actual value of the currency.    currencyCode string          //The ISO currency code.}/*GetBSON implements bson.Getter.*/func (c Currency) GetBSON() (interface{}, error) {    f, _ := c.Value().Float64()    return bson.Marshal(struct {        Value        float64 `json:"value" bson:"value"`        CurrencyCode string  `json:"currencyCode" bson:"currencyCode"`    }{        Value:        f,        CurrencyCode: c.currencyCode,    })}/*SetBSON implements bson.Setter.*/func (c *Currency) SetBSON(raw bson.Raw) error {    decoded := new(struct {        Value        float64 `json:"value" bson:"value"`        CurrencyCode string  `json:"currencyCode" bson:"currencyCode"`    })    fmt.Println(string(raw.Data))    bsonErr := raw.Unmarshal(decoded)    if bsonErr == nil {        fmt.Println("Debug: no error returned.")        fmt.Println(decoded)        c.value = decimal.NewFromFloat(decoded.Value)        c.currencyCode = decoded.CurrencyCode        return nil    } else {        return bsonErr    }}通过查看原始数据,它可以正确编组,但是在解组时,结果结构只是空的。我在这里出错的任何想法?我go get gopkg.in/mgo.v2昨天确实使用了这个命令,所以我希望它是最新的,并且像这样的错误不会出现在“最热门的 MongoDB 驱动程序”中。
查看完整描述

1 回答

?
蝴蝶刀刀

TA贡献1801条经验 获得超8个赞

该GetBSON方法应返回的值来编组,而不是从编组由此产生的二进制数据。这就是为什么它的第一个结果类型是interface{}而不是[]byte


查看完整回答
反对 回复 2021-10-18
  • 1 回答
  • 0 关注
  • 162 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信