早些时候我发布了这个问题,询问有关使用 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 回答
- 0 关注
- 162 浏览
添加回答
举报
0/150
提交
取消