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

我正在尝试查找 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


任何帮助将不胜感激。


哈士奇WWW
浏览 98回答 1
1回答

qq_花开花谢_0

您使用“$in”错误。您没有初始化内部地图。你应该像这样使用它:err := c.Find(bson.M{"friends": bson.M{"$in": arr}}).All(&users)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go