douxiyi2418 2016-02-15 04:15
浏览 64
已采纳

如何使用Go Map从Mongo检索非结构化数据形式

I'm trying to retrieve data using go map. The data in mongo is like

"_id" : ObjectId("56bf128f5a9a6a0ebfdd5075"),
    "deadLine" : {
      "Start_time" : ISODate("2016-05-24T00:00:00Z"),
      "End_time" : ISODate("2016-05-29T00:00:00Z")
    },
    "taskData" : {
      "Task_content" : "Something",
      "Priority" : "3"
    },
    "group" : {
      "1" : {
      "grp_name" : "grp"
      },
      "2" : {
      "grp_name" : "secondGrp"
      }
    }

And I want to retrieve all records according to Priority.

the sample code which i tried ...

var m []bson.M
    err := collection.Find(bson.M{"taskData":bson.M{"Priority" : "2"}}).All(&m) // stuck here in `Find()`
    if err != nil {
        fmt.Println("Error : ",err)
    }else{
      fmt.Println("Map : ",m)
    }
  }

If i use err := collection.Find(bson.M{"_id":bson.ObjectIdHex("56bf128f5a9a6a0ebfdd5075")}).All(&m) then it fetch all records. Kindly correct my mistake.

Thanks in advance

展开全部

  • 写回答

1条回答 默认 最新

  • doutuo3575 2016-02-15 05:05
    关注
    var m []bson.M
        err := collection.Find(bson.M{"taskData.Priority" : "2"}).All(&m) 
        if err != nil {
            fmt.Println("Error : ",err)
        }else{
          fmt.Println("Map : ",m)
        }
      }
    

    Here is the description https://docs.mongodb.org/manual/tutorial/query-documents/#equality-match-on-fields-within-an-embedded-document

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 fluentmeshing
  • ¥15 手机/平板的浏览器里如何实现类似荧光笔的效果
  • ¥15 盘古气象大模型调用(python)
  • ¥15 传人记程序做的plc 485从机程序该如何写
  • ¥15 已知手指抓握过程中掌指关节、手指各关节和指尖每一帧的坐标,用贝塞尔曲线可以拟合手指抓握的运动轨迹吗?
  • ¥50 libwebsockets 如何添加其他socket事件回调
  • ¥50 实现画布拖拽算子排布,通过flink实现算子编排计算,请提供思路
  • ¥15 esium自定义材质拉伸问题
  • ¥15 cmake+mingw使用<mysqlx/xdevapi.h>报错
  • ¥15 eNSP中防火墙的使用
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部