所以,基本上,我有这个 ID 数组:
> arrayDeptID
[
{
"departamento_id" : 0
},
{
"departamento_id" : 2
},
{
"departamento_id" : 5
},
{
"departamento_id" : 6
}
]
我想将其转换为仅包含文档字段departamento_id上的值的数组,如下所示:
[0, 2, 5, 6]
有没有办法在 MongoDB shell 中做到这一点?