20

我已经创建了一些文档并设法进行了一些简单的查询,但是我无法创建一个查询来查找仅存在字段的文档。

例如假设这是一个文档:

{  "profile_sidebar_border_color" : "D9B17E" , 
   "name" : "???? ???????" , "default_profile" : false , 
   "show_all_inline_media" : true , "otherInfo":["text":"sometext", "value":123]}

现在我想要一个查询,它将把所有文档中的文本都otherInfo包含在其中。

如果没有文本,那么otherInfo将是这样的:"otherInfo":[]

所以我想检查text.otherInfo

我怎样才能做到这一点?

4

4 回答 4

58

您可以将$exists运算符与.表示法结合使用。mongo-shell 中的裸查询应如下所示:

db.yourcollection.find({ 'otherInfo.text' : { '$exists' : true }})

Java 中的测试用例可能如下所示:

    BasicDBObject dbo = new BasicDBObject();
    dbo.put("name", "first");
    collection.insert(dbo);

    dbo.put("_id", null);
    dbo.put("name", "second");
    dbo.put("otherInfo", new BasicDBObject("text", "sometext"));
    collection.insert(dbo);

    DBObject query = new BasicDBObject("otherInfo.text", new BasicDBObject("$exists", true));
    DBCursor result = collection.find(query);
    System.out.println(result.size());
    System.out.println(result.iterator().next());

输出:

1
{ "_id" : { "$oid" : "4f809e72764d280cf6ee6099"} , "name" : "second" , "otherInfo" : { "text" : "sometext"}}
于 2012-04-07T20:10:47.967 回答
2

或者您可以使用:

import static com.mongodb.client.model.Filters.exists;

Document doc = (Document) mongoCollection.find(exists("otherInfo")).first();
于 2018-05-06T19:15:11.420 回答
1

您可以使用com.mongodb.QueryBuilder该类来构建马特回答中提供的查询:

QueryBuilder queryBuilder = QueryBuilder.start("otherInfo.text").exists(true);
DBObject query = queryBuilder.get();
DBCursor dbCursor = collection.find(query);
于 2018-05-29T06:06:23.603 回答
0

in 查询不会过滤掉所有带有文本值的元素,如下所示。

db.things.find({otherInfo:{$in: [text]}});

BasicDBObject query = new BasicDBObject();
query.put("otherInfo", new BasicDBObject("$in", "[text]"));
var result = db.find(query);
于 2012-04-07T19:59:57.493 回答