Go中的MongoDB聚合查找(mgo.v2)

时间:2016-11-08 10:15:13

标签: mongodb go mongodb-query aggregation-framework mgo

我尝试使用mgo包在go(golang)中的一个mongoDB查询中实现$lookup功能。

以下是我的收藏:

文件夹:

"_id"    : ObjectId("22222222222222"),
"name"   : "Media",
"level"  : 1,
"userIDs": [ObjectId("4444444444444")]

文件:

"_id"      : ObjectId("11111111111111"),
"title"    : "Media Management",
"body"     : BinData(0,"PvQ6z2NBm4265duo/e2XsYxA5bXKo="),
"level"    : 1,
"folderID" : ObjectId("22222222222222"), // Foreign Key/Field
"userIDs"  : [ObjectId("44444444444444")]

以下是我在shell上成功运行的查询:

var query = [
{ 
  "$lookup": {
    "from":         "documents",
    "localField":   "_id",
    "foreignField": "folderID",
    "as":           "documents",
  }
}
 ,{
   "$match": {
      "userIDs": ObjectId("userIdHere"), // filder by a userID
      "level": {$gte: 0},                // filter by a folder level
    },
  }
];

db.folders.aggregate(query).pretty().shellPrint();

如果我在shell上运行此脚本,我会得到所需的结果。基本上,folder集合会返回给我,其中包含通过documents链接的完整相关$lookup。我不在此处,因为这个问题似乎已经太长了。

我尝试将此查询转换为 mgo 能够解析和执行的内容。这里是下面的代码:

query := bson.M{
  "$lookup": bson.M{ // lookup the documents table here
  "from":         "documents",
  "localField":   "_id",
  "foreignField": "folderID",
  "as":           "documents",
},
  "$match": bson.M{
    "level":   bson.M{"$gte": user.Level}, // filter by level
    "userIDs": user.ID,                    // filter by user
  },
}

pipe := collection.Pipe(query) // querying the "folders" collection
err := pipe.All(&result)

我总是得到同样的错误:字段错误的类型(管道)3!= 4

如果我理解正确,那是因为它无法正确地将结果解析回$ result对象。我已尽我所能确保结构具有所需的确切结构。我还尝试传入一个基因版[]interface{}和一个空bson.M{}个对象。仍然收到同样的错误。

以下是我的文件夹结构:

type Folder struct {
  ID        bson.ObjectId   `json:"id" bson:"_id"`
  Name      string          `json:"name"`
  Level     int             `json:"level"`
  UserIDs   []bson.ObjectId `json:"userIDs" bson:"userIDs"`
  Users     []User          `json:"-" bson:"-"` // doesn't get stored in the database
  Documents []Document      `json:"-" bson:"-"` // doesn't get stored in the database
}

我还删除了$match子句,看看我是否可以从$lookup查询中获取任何内容。但我仍然得到同样的错误。

也许mgo软件包不支持$lookup?如果是这样,会有另一种方式吗? 也许我可以将原始查询文本发送到mongo并接收原始响应并自己解析它?

1 个答案:

答案 0 :(得分:6)

找到了解决方案!

诀窍是在切片([]bson.M)中创建查询并稍微更改查询的结构:

query := []bson.M{{
  "$lookup": bson.M{ // lookup the documents table here
    "from":         "documents",
    "localField":   "_id",
    "foreignField": "folderID",
    "as":           "documents",
  }},
  {"$match": bson.M{
    "level": bson.M{"$lte": user.Level},
    "userIDs": user.ID,
}}}

pipe := collection.Pipe(query)
err := pipe.All(&folders)

我在mgo's Pipe function docs找到了一条线索。此外,我必须更改我的Documents结构中Folders字段的标签,以便mgo将该字段更改为:

type Folder struct {
  ID        bson.ObjectId   `json:"id" bson:"_id"`
  Name      string          `json:"name"`
  Level     int             `json:"level"`
  UserIDs   []bson.ObjectId `json:"userIDs" bson:"userIDs"`
  Users     []User          `json:"-" bson:"-"` // doesn't get stored in the database
  Documents []Document      // `json:"-" bson:"-" Removed this so that mgo can unmarshal
                            // the documents correctly
}

现在,我只需要找出一种方法,即在保存Documents时不将Folder字段存储在数据库中。