我有一个这样的文件。
"item" : "060478132",
"some_id" : {
"5" : {
"obj1" : "4",
"obj2" : "4"
}
}
这就是我现在正在做的事情,我认为它可能会更好,但我是 Java Driver for mongo 的新手
DBObject query = start("item").is("060478132").get();
DBObject obj = collection.find(query).toArray().get(0);
DBObject some_ids = (DBObject) obj.get("some_id");
DBObject theObj = (DBObject) some_ids.get("5");