我有一个MongoDB集合的文档格式如下:

{
  "_id" : ObjectId("4e8ae86d08101908e1000001"),
  "name" : ["Name"],
  "zipcode" : ["2223"]
}
{
  "_id" : ObjectId("4e8ae86d08101908e1000002"),
  "name" : ["Another ", "Name"],
  "zipcode" : ["2224"]
}

我目前可以获得匹配特定数组大小的文档:

db.accommodations.find({ name : { $size : 2 }})

这将正确地返回name数组中有2个元素的文档。但是,我不能用$gt命令返回name字段数组大小大于2的所有文档:

db.accommodations.find({ name : { $size: { $gt : 1 } }})

如何选择名称数组大小大于1的所有文档(最好不必修改当前数据结构)?


当前回答

我找到了这个解决方案,找到一个数组字段大于一定长度的项目

db.allusers.aggregate([
  {$match:{username:{$exists:true}}},
  {$project: { count: { $size:"$locations.lat" }}},
  {$match:{count:{$gt:20}}}
])

第一个$match聚合使用一个对所有文档都成立的参数。如果空白,我会得到

"errmsg" : "exception: The argument to $size must be an Array, but was of type: EOO"

其他回答

更新:

对于mongodb 2.2+版本,更有效的方法是@JohnnyHK在另一个答案中描述的。


使用美元, db.accommodations。Find ({$where: "this.name.length > 1"});

但是…

Javascript的执行速度比上面列出的本地操作符慢 这个页面,但是非常灵活。请参阅服务器端处理页面 获取更多信息。

创建额外的字段NamesArrayLength,更新它的名称数组长度,然后在查询中使用: db.accommodations。find({"NamesArrayLength": {$gt: 1}});

这将是一个更好的解决方案,并且会工作得更快(你可以在上面创建索引)。

在MongoDB 2.2+中,现在可以在查询对象键中使用数值数组索引(基于0),这是一种更有效的方法。

// Find all docs that have at least two name array elements.
db.accommodations.find({'name.1': {$exists: true}})

你可以通过使用偏过滤器表达式的索引来支持这个查询(需要3.2+):

// index for at least two name array elements
db.accommodations.createIndex(
    {'name.1': 1},
    {partialFilterExpression: {'name.1': {$exists: true}}}
);

我找到了这个解决方案,找到一个数组字段大于一定长度的项目

db.allusers.aggregate([
  {$match:{username:{$exists:true}}},
  {$project: { count: { $size:"$locations.lat" }}},
  {$match:{count:{$gt:20}}}
])

第一个$match聚合使用一个对所有文档都成立的参数。如果空白,我会得到

"errmsg" : "exception: The argument to $size must be an Array, but was of type: EOO"

虽然上面的答案都工作,你最初尝试做的是正确的方式,然而你只是有语法向后(切换“$size”和“$gt”)..

正确的:

db.collection.find({items: {$gt: {$size: 1}}})

以上这些方法对我都没用。这一个做到了,所以我分享一下:

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