5

我正在尝试检索填充此类的对象:

type Room struct {
    Name   string
    People []Person
    Chat   []ChatMessage
    Me     Person
}

数据字段“人”作为空切片 [] 出现。我正在使用简单的查找来获取数据。

result := Room{}
err = c.Find(bson.M{"name": "dev"}).One(&result)

我究竟做错了什么?

弄清楚了....

答案可以在这里找到: https ://groups.google.com/d/msg/mgo-users/KirqfCSlKFc/t2l3l4yxFRwJ

基本上,只需要在 People []Person 行的末尾添加 'bson: ""'

4

1 回答 1

6

弄清楚了....

答案可以在这里找到:https ://groups.google.com/d/msg/mgo-users/KirqfCSlKFc/t2l3l4yxFRwJ

基本上,只需要在 People []Person 行的末尾添加 'bson: ""'

于 2013-02-06T17:38:55.527 回答