gpt4 book ai didi

arrays - 获取嵌套数组中具有特定 ObjectId 的数组对象

转载 作者:IT王子 更新时间:2023-10-29 01:41:17 26 4
gpt4 key购买 nike

我正在尝试根据对象拥有的 ObjectId 获取特定的对象数组。

这是我的 MongoDB 数据库:

{
"_id" : ObjectId("59edb571593904117884b721"),
"userids" : [
ObjectId("59edb459593904117884b71f")
],
"macaddress" : "MACADDRESS",
"devices" : [ ],
"projectorbrand" : "",
}
{
"_id" : ObjectId("59edb584593904117884b722"),
"userids" : [
ObjectId("59edb459593904117884b71f"),
ObjectId("59e4809159390431d44a9438")
],
"macaddress" : "MACADDRESS2",
"devices" : [ ],
"projectorbrand" : "",
}

MongoDB 中的命令是:

db.getCollection('co4b').find( {
userids: { $all: [ ObjectId("59edb459593904117884b71f") ] }
} )

这将起作用,并将返回一个正确过滤的数组。我想用 Golang 翻译这个查询。

这是我的代码:

pipe := bson.M{"userids": bson.M{"$all": objectId}}
var objects[]models.Objects
if err := uc.session.DB("API").C("objects").Pipe(pipe).All(&objects); err != nil {
SendError(w, "error", 500, err.Error())
} else {
for i := 0; i < len(objects); i++ {
objects[i].Actions = nil
}
uj, _ := json.MarshalIndent(objects, "", " ")
SendSuccessJson(w, uj)
}

我收到类似 wrong type for field (pipeline) 3 != 4 的错误。我看到 $all 需要字符串数组,但如何按 ObjectId 而不是字符串进行过滤?

感谢帮助

最佳答案

您正试图在您的 mgo 解决方案中使用聚合框架,但您尝试实现的查询并未使用(也不需要)。

查询:

db.getCollection('co4b').find({
userids: {$all: [ObjectId("59edb459593904117884b71f")] }
})

可以像这样简单地转换为 mgo:

c := uc.session.DB("API").C("objects")

var objects []models.Objects
err := c.Find(bson.M{"userids": bson.M{
"$all": []interface{}{bson.ObjectIdHex("59edb459593904117884b71f")},
}}).All(&objects)

另请注意,如果您对单个元素使用 $all,您还可以使用 $elemMatch 实现该查询,这在 MongoDB 控制台中如下所示:

db.getCollection('co4b').find({
userids: {$elemMatch: {$eq: ObjectId("59edb459593904117884b71f")}}
})

mgo 中看起来像这样:

err := c.Find(bson.M{"userids": bson.M{
"$elemMatch": bson.M{"$eq": bson.ObjectIdHex("59edb459593904117884b71f")},
}}).All(&objects)

关于arrays - 获取嵌套数组中具有特定 ObjectId 的数组对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46892083/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com