要从 mongodb 打印一个集合,以下是我在 python 中的代码:
print(list(MongoClient(***).get_database("ChatDB").get_collection("room_members".find({'_id.username': username})))
我正在学习 Go,我正在尝试将上述代码翻译成 golang。
我的代码如下:
client, err := mongo.Connect(context.TODO(), options.Client().ApplyURI("*****"))
if err != nil {
panic(err)
}
likes_collection := client.Database("ChatDB").Collection("likes")
cur, err := likes_collection.Find(context.Background(), bson.D{{}})
if err != nil {
panic(err)
}
defer cur.Close(context.Background())
fmt.Println(cur)
但是,我得到了一些十六进制值
哔哔one
芜湖不芜
相关分类