douping7975 2018-12-07 21:36
浏览 108
已采纳

使用mgo Golang从MongoDB子文档数组中解组

I am trying to figure out how to get a single subdocument from an array and unmarshal it into a struct.

My mongo document looks like this:

{ 
    "_id" : ObjectId("abc123"), 
    "gamecode" : "abc123"
    "players" : [ 
        { 
            "playerid" : ObjectId("abc123"), 
            "username" : "test", 
        },
        { 
            "playerid" : ObjectId("abc456"), 
            "username" : "test2"
        }]
 }

And I have a player struct that looks like this:

type Player struct {
    PlayerID bson.ObjectId `bson:"playerid" json:"playerid"`
    Username string        `bson:"username" json:"username"`
}

From the mongo command line I can do a

db.games.find(({"players.playerid": ObjectId('abc123')}, {"_id": 0, "players.$":1})

Which returns

{"players" : [{ "playerid" : ObjectId("abc123"), "username" : "test"}]}

But I am having a hard time figuring out how to implement this same functionality in Go so that I have a populated player struct from the result of the query. I have been playing around with different configurations of the code below, but it always results in an empty struct. What am I missing here?

player := Player{}
collection.Find(bson.M{"players.playerid": bson.ObjectIdHex(pid)}).Select(bson.M{"_id": 0, "players.$": 1}).One(&player)

I am running the latest MongoDB version and am using the mgo.v2 driver for Go.

  • 写回答

1条回答 默认 最新

  • dongqing5925 2018-12-07 22:56
    关注

    It's because you don't capture a single player, you capture players. like in the response from the mongo command:

    {"players" : [{ "playerid" : ObjectId("abc123"), "username" : "test"}]}
    

    Sounds like you can you an abstraction for a game

    type Game struct {
        Players []Player `bson:"players"`
    }
    

    And your call would be into &game

    var game Game
    collection.Find(bson.M{"...").One(&game)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 图像超分real-esrgan网络自己训练模型遇到问题
  • ¥15 如何构建全国统一的物流管理平台?
  • ¥100 ijkplayer使用AndroidStudio/CMake编译,如何支持 rtsp 直播流?
  • ¥15 用js遍历数据并对非空元素添加css样式
  • ¥15 使用autodl云训练,希望有直接运行的代码(关键词-数据集)
  • ¥50 python写segy数据出错
  • ¥20 关于线性结构的问题:希望能从头到尾完整地帮我改一下,困扰我很久了
  • ¥30 3D多模态医疗数据集-视觉问答
  • ¥20 设计一个二极管稳压值检测电路
  • ¥15 内网办公电脑进行向日葵