为了账号安全,请及时绑定邮箱和手机立即绑定

Golang,MongoDB,使用 $in 在数组属性中查找具有一个字符串的所有元素时遇到问题

Golang,MongoDB,使用 $in 在数组属性中查找具有一个字符串的所有元素时遇到问题

Go
哈士奇WWW 2022-01-10 16:33:24
我正在尝试查找 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任何帮助将不胜感激。
查看完整描述

1 回答

?
qq_花开花谢_0

TA贡献1835条经验 获得超7个赞

您使用“$in”错误。您没有初始化内部地图。你应该像这样使用它:

err := c.Find(bson.M{"friends": bson.M{"$in": arr}}).All(&users)


查看完整回答
反对 回复 2022-01-10
  • 1 回答
  • 0 关注
  • 97 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信