文章目录
$isArray
聚合运算符返回操作数是否是一个数组,返回一个布尔值。
语法
js
{ $isArray: [ <expression> ] }
使用
<expression>
为任何类型的表达式,举例说明:
举例 | 结果 | 说明 |
---|---|---|
{ $isArray: "hello" } |
false | "hello"为字符串,作为字符串传递 |
{ $isArray: [ "hello" ] } |
false | "hello"是一个字符串,作为参数数组的一部分传递 |
{ $isArray: [ [ "hello" ] ] } |
true | [ "hello" ] 是一个数组,作为参数数组的一部分传递 |
**注意:**聚合表达式接受可变数量的参数。这些参数通常作为数组传递。但是,当参数是单个值时,可以通过直接传递参数而不将其包装在数组中来简化代码。
举例
使用下面的脚本创建warehouses
集合:
js
db.warehouses.insertMany( [
{ "_id" : 1, instock: [ "chocolate" ], ordered: [ "butter", "apples" ] },
{ "_id" : 2, instock: [ "apples", "pudding", "pie" ] },
{ "_id" : 3, instock: [ "pears", "pecans"], ordered: [ "cherries" ] },
{ "_id" : 4, instock: [ "ice cream" ], ordered: [ ] }
] )
检查instock
和ordered
字段是否为数组。如果两个字段都是数组,则将它们连接起来:
js
db.warehouses.aggregate( [
{ $project:
{ items:
{ $cond:
{
if: { $and: [ { $isArray: "$instock" },
{ $isArray: "$ordered" }
] },
then: { $concatArrays: [ "$instock", "$ordered" ] },
else: "One or more fields is not an array."
}
}
}
}
] )
结果:
json
{ "_id" : 1, "items" : [ "chocolate", "butter", "apples" ] }
{ "_id" : 2, "items" : "One or more fields is not an array." }
{ "_id" : 3, "items" : [ "pears", "pecans", "cherries" ] }
{ "_id" : 4, "items" : [ "ice cream" ] }