我们如何将原始 M 转换为字符串?
package main
import (
"go.mongodb.org/mongo-driver/bson"
)
func main() {
a := bson.M{ // primitive.M
"test": bson.M{
"fielda": "AAA",
"fieldb": "BBB",
},
}
}
我正在使用它来记录进程中失败的 mongodb 文档。我能够使用 打印值logrus.Error,我想将此转换复制为字符串,然后将其记录到文件中。
// cursor = "go.mongodb.org/mongo-driver/mongo" *mongo.Cursor
// logrus = "github.com/sirupsen/logrus"
//...
var temp bson.M
_ := cursor.Decode(&temp) // assume this is not returning error, it will log the map
logrus.Error("value: ", temp) // value: map[__v:0 _id:ObjectID(\"5c8ef7df7216e9935ecd7859\") field1:test]
拉莫斯之舞
相关分类