执行此操作的最佳方法是使用
我正在尝试执行以下操作:
for i in range(5):
collection.insert({'a': ['1' for j in range(i)]} if i else {})
# the collection now contains 5 documents: one with only an _id field
# and four with an _id and an array of different sizes.]
list(m.aggregate([{'$project': {'a': 1, 'amt': {'$size': '$a'}}}]))
但是,这会引发OperationFailure,因为没有为空文档定义$a。
我该如何告诉Mongo为空文档给我一个0?如果字段a
在投影期间未定义,我可以回退到空数组吗?
$ifNull
运算符。
db.collection.aggregate([
{ "$project": {
"a": 1,
"amt": { "$size": { "$ifNull": [ "$a", [] ] } }
}}
])
您可以检查数组是否存在(尽管不使用$exists(,否则输出0,如下所示:
{
'$project': {
'a': 1,
'amt': {
$cond: [ {$gt: ["$a", null]}, {'$size': '$a'}, 0 ]
}
}
}