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

早些时候我发布了这个问题,询问有关使用 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 驱动程序”中。


慕慕森
浏览 163回答 1
1回答

蝴蝶刀刀

该GetBSON方法应返回的值来编组,而不是从编组由此产生的二进制数据。这就是为什么它的第一个结果类型是interface{}而不是[]byte。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go