我想有效地将mongo-go-driver中的bson转换为json。
我应该小心处理NaN
,因为如果数据中存在NaN
,则json.Marshal
会失败。
例如,我想将下面的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
}
1条答案
按热度按时间qij5mzcb1#
如果您了解BSON的结构,则可以创建实现
json.Marshaler
和json.Unmarshaler
接口的自定义类型,并随心所欲地处理NaN。例如:如果您的BSON具有任意结构,您唯一的选择是使用反射遍历该结构,并将出现的任何NaN转换为类型(可能是如上所述的自定义类型)