给定架构:
{
_id: ObjectID,
city:
{ units:
{ abc: {},
def: { tuid : String },
...
xxx: { tuid : String }
}
}
对于特定的,我想返回who 的子属性_id
的所有属性,例如 123。units
tuid
我已经搜索了有关此的信息,但数组操作不断弹出,而不是我需要的。
谢谢你。
给定架构:
{
_id: ObjectID,
city:
{ units:
{ abc: {},
def: { tuid : String },
...
xxx: { tuid : String }
}
}
对于特定的,我想返回who 的子属性_id
的所有属性,例如 123。units
tuid
我已经搜索了有关此的信息,但数组操作不断弹出,而不是我需要的。
谢谢你。