使用go动态的mongodb查询

时间:2020-10-03 20:18:10

标签: mongodb go mgo

我想建立一个动态的mongo查询,但是在google中搜索,我不明白为什么第一个查询返回null。

matches := []bson.M{bson.M{"$match": bson.M{"age": bson.M{"$gt": 20}}}}
err2 := coll.Find(matches).All(&persons)

这显示了预期的行:

err2 = coll.Find(bson.M{"age": bson.M{"$gt": 20}}).All(&persons)

请问您有一个简单的示例如何使用两个参数构建查询吗?

谢谢。

1 个答案:

答案 0 :(得分:0)

您的第一个示例不起作用,因为Collection.Find()需要一个单个过滤器文档,并且您将一部分文档传递给它。

单个文档可能包含多个过滤器,例如bson.M{"age": bson.M{"$gt": 20}, "name": "Bob"},因此实际上并不构成限制。

如果您有多个过滤器文档并且要全部应用,则必须将它们“合并”到一个文档中。

一般的解决方案是使用$and键(如果您希望它们进行逻辑AND连接,或者如果使用$or如果您希望逻辑OR)创建文档,则其映射中的值为切片过滤器(文档)。

这很简单:

// filters contains all the filters you want to apply:
filters := []bson.M{
    bson.M{"age": bson.M{"$gt": 20}},
    bson.M{"name": "Bob"},
}

// filter is a single filter document that merges all filters
filter := bson.M{"$and": filters}

// And then:
err := coll.Find(filter).All(&persons)