我正在使用passport.js将我的用户存储到我的mongodb中。用户对象看起来像这样
{
"_id" : ObjectId("54893faf0907a100006341ee"),
"local" : {
"password" : [encrypted password],
"email" : "johnsmith@domain.com"
},
"__v" : 0
}
在mongodb shell中,我如何列出所有电子邮件?我发现很难做到这一点,因为我的数据位于对象内两层深处。干杯!