2
{
 "_id": ObjectId("502626aad4ebdf600b000000"),
 "created_at": ISODate("2012-08-11T09: 32: 26.0Z"),
 "excerpt": "lotto results for August 11, 2012",
 "results": {
    "1-digit" : {
        "0" : "1",
    },
    "2-digit" : {
        "0" : "1",
        "1" : "2",
    },
    "3-digit" : {
        "0" : "1",
        "1" : "2",
        "2" : "3",
    }
    }
}

我应该如何检查是否results.1-digit存在?

4

2 回答 2

9

您可以运行查询{results.1-digit : {$exists : true }}

希望能帮助到你。

于 2012-08-11T10:50:31.570 回答
1

我相信在 shell 中添加引号同样重要

{"results.1-digit" : {$exists : true }}  
于 2012-11-01T07:32:47.017 回答