douxiyi2418 2016-02-15 12: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 13: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

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

报告相同问题?

悬赏问题

  • ¥100 角动量包络面如何用MATLAB绘制
  • ¥15 merge函数占用内存过大
  • ¥15 Revit2020下载问题
  • ¥15 使用EMD去噪处理RML2016数据集时候的原理
  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大
  • ¥15 单片机无法进入HAL_TIM_PWM_PulseFinishedCallback回调函数
  • ¥15 Oracle中如何从clob类型截取特定字符串后面的字符
  • ¥15 想通过pywinauto自动电机应用程序按钮,但是找不到应用程序按钮信息
  • ¥15 如何在炒股软件中,爬到我想看的日k线
  • ¥15 seatunnel 怎么配置Elasticsearch