我正在尝试查找 MongoDB 集合中的所有用户,该集合中包含 Friends 数组中的用户名字符串。我正在将 Golang 与 mgo 驱动程序一起使用。
type User struct {
...
Friends []string `json: friends bson:"friends,omitempty"`
...
}
...
// username is a string
arr := []string{username}
err := c.Find(bson.M{"friends": {"$in": arr}}).All(&users)
...
我收到此错误:http: panic serving [::1]:56358: assignment to entry in nil map
任何帮助将不胜感激。
qq_花开花谢_0
相关分类