Docs 菜单
Docs 主页
/
MongoDB Manual
/ / /

$isArray(聚合)

在此页面上

  • 定义
  • 行为
  • 例子
$isArray

确定操作数是否为数组。返回一个布尔值。

$isArray 通过以下语法实现:

{ $isArray: [ <expression> ] }

<expression>可以是任何有效的表达式。 有关表达式的更多信息,请参阅表达式操作符。

例子
结果
注意
{ $isArray: "hello" }
false
"hello" 是一个字符串,作为字符串传递。
{ $isArray: [ "hello" ] }
false
"hello" 一个字符串,作为参数数组的一部分传递。
{ $isArray: [ [ "hello" ] ] }
true
[ "hello" ] 是一个数组,作为参数数组的一部分传递。

注意

聚合表达式接受可变数量的参数。这些参数通常以数组形式传递。但是,当参数是单个值时,您可以通过直接传递参数而不将其封装在数组中来简化代码。

使用以下文档创建名为 warehouses 的集合:

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: [ ] }
] )

检查 instockordered 字段是否为数组。如果两个字段都是数组,则将它们连接起来:

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."
}
}
}
}
] )
{ _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" ] }

提示

另请参阅:

  • $cond

  • $concatArrays

后退

$integral

在此页面上