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

使用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 matlab实现基于主成分变换的图像融合。
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制
  • ¥20 usb设备兼容性问题
  • ¥15 错误(10048): “调用exui内部功能”库命令的参数“参数4”不能接受空数据。怎么解决啊