登录
首页 >  Golang >  Go问答

如何使用 mongo-go-driver 有效地将 bson 转换为 json?

来源:Golang技术栈

时间:2023-04-30 20:58:08 389浏览 收藏

Golang不知道大家是否熟悉?今天我将给大家介绍《如何使用 mongo-go-driver 有效地将 bson 转换为 json?》,这篇文章主要会讲到golang等等知识点,如果你在看完本篇文章后,有更好的建议或者发现哪里有问题,希望大家都能积极评论指出,谢谢!希望我们能一起加油进步!

问题内容

我想有效地将​​ mongo-go-driver中的 bson 转换为 json。

我应该小心处理NaN,因为json.Marshal如果数据中存在则失败NaN

例如,我想将下面的 bson 数据转换为 json。

b, _ := bson.Marshal(bson.M{"a": []interface{}{math.NaN(), 0, 1}})
// How to convert b to json?

以下失败。

// decode
var decodedBson bson.M
bson.Unmarshal(b, &decodedBson)
_, err := json.Marshal(decodedBson)
if err != nil {
    panic(err) // it will be invoked
    // panic: json: unsupported value: NaN
}

正确答案

如果您知道 BSON 的结构,则可以创建一个自定义类型来实现json.Marshalerjson.Unmarshaler接口,并根据需要处理 NaN。例子:

type maybeNaN struct{
    isNan  bool
    number float64
}

func (n maybeNaN) MarshalJSON() ([]byte, error) {
    if n.isNan {
        return []byte("null"), nil // Or whatever you want here
    }
    return json.Marshal(n.number)
}

func (n *maybeNan) UnmarshalJSON(p []byte) error {
    if string(p) == "NaN" {
        n.isNan = true
        return nil
    }
    return json.Unmarshal(p, &n.number)
}

type myStruct struct {
    someNumber maybeNaN `json:"someNumber" bson:"someNumber"`
    /* ... */
}

如果您的 BSON 具有任意结构,则唯一的选择是遍历该结构,使用反射,并将任何出现的 NaN 转换为类型(可能是如上所述的自定义类型)

文中关于golang的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《如何使用 mongo-go-driver 有效地将 bson 转换为 json?》文章吧,也可关注golang学习网公众号了解相关技术文章。

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>