dsqbh42082 2019-01-03 20:11
浏览 593
已采纳

打印mongoDB Collection Golang中的所有记录

I've got a MongoDB Collection collection := db.Collection("JobBacklog") that I'm trying to print out into the console. The DB is in a Docker container and controlling it with a script written in Go.

From what I've been able to find from the mongo-go-driver https://godoc.org/github.com/mongodb/mongo-go-driver/mongo there is a way to do this but my code keeps returning document is nil when I know it isn't.

This is my code I'm using to try to iterate through a collection called JobBacklog

cur, err := collection.Find(context.Background(), nil)
        if err != nil {
            log.Fatal(err)
        }
        defer cur.Close(context.Background())
        for cur.Next(context.Background()) {
            raw, err := cur.DecodeBytes()
            if err != nil {
                log.Fatal(err)
            }
            //print element data from collection
            fmt.Println("Element", raw, x)
        }
        if err := cur.Err(); err != nil {
            log.Fatal(err)
        }

I expect it to print out the contents of the collection which are:

_id:5c2d34e36657ba3238374f9a
UID:"ALDK"
PROFILE:"B"
STATUS:"PENDING"
DEVICE:"2.2.2.2"

That is an example entry of the JobBacklog DB.

Full disclosure, the end goal for this is to find the last entry that was added to the collection, but I need to be able to read through the collection first.

I know I'm connected to the DB, I can add/find/delete entries, but the printing out of all in the collection is eluding me. Any assistance is appreciated. Thanks!

  • 写回答

2条回答 默认 最新

  • donmqryh49993 2019-01-04 21:44
    关注

    The error message "document is nil' is about the filter in the Find(). Change the line

    cur, err := collection.Find(context.Background(), nil)

    to

    cur, err := collection.Find(context.Background(), bson.D{{}})

    should work.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥500 寻找一名机械工程师完成pcb主板设计(拒绝AI生成式答案)
  • ¥15 关于#mysql#的问题:UNION ALL(相关搜索:sql语句)
  • ¥15 matlab二位可视化能否针对不同数值范围分开分级?
  • ¥15 已经创建了模拟器但是不能用来运行app 怎么办😭自己搞两天了
  • ¥15 关于#极限编程#的问题,请各位专家解答!
  • ¥20 win11账户锁定时间设为0无法登录
  • ¥45 C#学生成绩管理系统
  • ¥30 matlab appdesigner私有函数嵌套整合
  • ¥15 vb6.0使用jmail接收smtp邮件并另存附件到D盘
  • ¥30 vb net 使用 sendMessage 如何输入鼠标坐标