sql >> Databasteknik >  >> NoSQL >> MongoDB

Hantering av anpassad BSON Marshaling

Custom bson Marshalling/Unmarshalling fungerar nästan på samma sätt, du måste implementera Getter- och Setter-gränssnitten respektive

Något sådant här borde fungera :

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 struct {
        Value        float64 `json:"value" bson:"value"`
        CurrencyCode string  `json:"currencyCode" bson:"currencyCode"`
    }{
        Value:        f,
        CurrencyCode: c.currencyCode,
    }, nil
}

// 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"`
    })

    bsonErr := raw.Unmarshal(decoded)

    if bsonErr == nil {
        c.value = decimal.NewFromFloat(decoded.Value)
        c.currencyCode = decoded.CurrencyCode
        return nil
    } else {
        return bsonErr
    }
}



  1. Exkludera specifika fält i jokerteckenindex i MongoDB

  2. Hur kör jag Redis på Windows 32 bit?

  3. Mongoose - använder Populate på en array av ObjectId

  4. DigitalOcean pod har obundna omedelbara PersistentVolumeClaims