您将如何使用Java驱动程序编写此MongoDB查询:


db.customers.find({'arrayName':{$ exists:true},$ where:'this.arrayName.length> 0'})


干杯,
亚恩

最佳答案

要使用Java驱动程序构建查询,您可以将所有Javascript对象替换为DBObject

DBObject condition = new BasicDBObject();
condition.put("arrayName", new BasicDBObject("$exists", true));
condition.put("$where",  "this.arrayName.length>0");

DBCursor result = yourDatabase.getCollection("customers").find(condition);

09-25 19:44