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

例如,假设这是一个文档:

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

现在,我需要一个查询,该查询将把所有文档包含在otherInfo中的文本中。

如果没有文本,则otherInfo将像这样:"otherInfo":[]
所以我想检查textotherInfo字段的存在。

我该如何实现?

最佳答案

您可以将$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"}}

07-26 09:07