登录
首页 >  Golang >  Go问答

使用 MongoDB 的嵌套文档查询中的元素查询运算符($exists)方法

来源:stackoverflow

时间:2024-02-28 20:57:24 350浏览 收藏

golang学习网今天将给大家带来《使用 MongoDB 的嵌套文档查询中的元素查询运算符($exists)方法》,感兴趣的朋友请继续看下去吧!以下内容将会涉及到等等知识点,如果你是正在学习Golang或者已经是大佬级别了,都非常欢迎也希望大家都能给我建议评论哈~希望能帮助到大家!

问题内容

我正在尝试使用 go 查找嵌套文档中是否存在字段。

目前,该文档如下所示。

我正在尝试查看该用户的购物车中是否存在项目 id 字段 - 5f15d53f205c36fa8b022089。使用 mongo compass,我能够使用此过滤命令成功查询正确的文档。

{"_id": objectid('5f19a8950268ef67ce0c5124'), "shoppingcart.items.5f15d53f205c36fa8b022089": {$exists: true}}

我尝试在 go 中使用相同的语法,但我仍然没有从结果中得到任何结果。

cursor, err := customersCollection.Find(
        ctx,
        bson.M{"_id": customerID, "shoppingCart.items.5f15d53f205c36fa8b022089": bson.M{"$exists": true}},
        options.Find().SetProjection(bson.M{"_id": 1}),
    ) 
    // This is how I am reading the results from the cursor. When
    // printing the results, I get an empty array.
    var results []bson.M
    if err = cursor.All(ctx, &results); err != nil {
        customerLog.Errorf(logger.LogError(logger.LogInfo()), err)
    }

    fmt.Printf("Products Result: %v\n", results)

我无法找到任何有关在过滤器参数中包含元素查询运算符的正确方法的文档。

这是我正在使用的 mongo 驱动程序,https://godoc.org/go.mongodb.org/mongo-driver/mongo

编辑1.0 我尝试过的事情:

  • 使用 bson.d 而不是 bson.m。更新了代码段。

    光标,错误:=customerscollection.find( ctx, bson.d{{"_id", customerid}, {"shoppingcart.items.5f15d53f205c36fa8b022089", bson.d{{"$exists", true}}}}, options.find().setprojection(bson.m{"_id": 1}), )


解决方案


如果您使用 go.mongodb.org/mongo-driver/bson 包,您可以执行以下操作:

query := bson.m{}
query["_id"] = bson.m{
    "$exists": true,
}

如果您愿意,您还可以使用包装器使其更干净:

type filterquery bson.m

func newfilterquery() filterquery {
    return filterquery(bson.m{})
}

func (q filterquery) setidexists(exist bool) filterquery {
    q["_id"] = bson.m{
        "$exists": exist,
    }
    return q
}

然后从您的代码中,您可以执行类似的操作

query := newfilterquery()
query.setidexist(true)
..
cursor, err := customerscollection.find(
        ctx,
        query,
    ) 
...

尝试以下操作:

bson.D{
   {"$exists", true},
}

(我在驱动程序的源代码中搜索了 $exist。)

到这里,我们也就讲完了《使用 MongoDB 的嵌套文档查询中的元素查询运算符($exists)方法》的内容了。个人认为,基础知识的学习和巩固,是为了更好的将其运用到项目中,欢迎关注golang学习网公众号,带你了解更多关于的知识点!

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>